diff --git a/.gitignore b/.gitignore index b52536bc..4a9dda16 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,35 @@ nyash-rust/ # Test files *.tmp + +# 🚨 ルートディレクトリ汚染防止(毎回散らã‹ã‚‹å•題対策) +# デãƒãƒƒã‚°ãƒ»ãƒ†ã‚¹ãƒˆé–¢é€£ãƒ•ァイル +/test_*.txt +/test_*.log +/build_*.txt +/mir_*.txt +/mir_*.log +/vm_*.log +/vm_*.json +/cmp_*.log +/out.txt +/err.txt +/test.txt +/*_output.txt +/*_errors.txt +/*_error.txt + +# 一時的ãªãƒ†ã‚¹ãƒˆãƒ•ァイル(ルートã«ç½®ã‹ãªã„ï¼ï¼‰ +/test_*.nyash + +# HTTP/ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ†ã‚¹ãƒˆãƒ­ã‚° +/http_test*.log +/http_test*.txt + +# 分æžãƒ»ã‚³ãƒ³ã‚µãƒ«ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³çµæžœ +/*_consultation.txt +/*_analysis.txt +/nekocode_*.txt *.bak *.orig test_*.ny diff --git a/CLAUDE.md b/CLAUDE.md index 88693d9d..199d7060 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -500,10 +500,29 @@ Related-Code: src/backend/vm_instructions.rs::execute_binop() ### 🧪 テスト実行 -#### 📠**テストファイルé…置ルール(é‡è¦ï¼ï¼‰** -- **local_testsフォルダを使用**: 一時的ãªãƒ†ã‚¹ãƒˆãƒ•ァイルã¯`local_tests/`ã«é…ç½® -- **ルートディレクトリã«ã¯ç½®ã‹ãªã„**: ãƒ—ãƒ­ã‚¸ã‚§ã‚¯ãƒˆãƒ«ãƒ¼ãƒˆãŒæ•£ã‚‰ã‹ã‚‰ãªã„よã†ã« -- **実行例**: `./target/debug/nyash local_tests/test_example.nyash` +#### 📠**テストファイルé…置ルール(超é‡è¦ï¼æ¯Žå›žãƒ«ãƒ¼ãƒˆãŒæ•£ã‚‰ã‹ã‚‹å•題)** + +âš ï¸ **ãƒ«ãƒ¼ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã®æ±šæŸ“防止ルール** âš ï¸ +```bash +# ⌠絶対ダメ:ルートã§å®Ÿè¡Œ +./target/release/nyash test.nyash # ログãŒãƒ«ãƒ¼ãƒˆã«æ•£ä¹±ï¼ +cargo test > test_output.txt # 出力ファイルãŒãƒ«ãƒ¼ãƒˆã«ï¼ + +# ✅ æ­£ã—ã„æ–¹æ³•:必ãšãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’使ㆠ+cd local_tests && ../target/release/nyash test.nyash +./target/release/nyash local_tests/test.nyash +``` + +**必須ルール:** +- **テストファイル**: å¿…ãš `local_tests/` ã«é…ç½® +- **ログファイル**: 環境変数㧠`logs/` ã«å‡ºåŠ›ã™ã‚‹ã‹ã€å®Ÿè¡Œå¾Œå³å‰Šé™¤ +- **デãƒãƒƒã‚°å‡ºåŠ›**: `local_tests/` ã¾ãŸã¯ `logs/` ã«ä¿å­˜ +- **一時ファイル**: `/tmp/` を使用 + +**ãªãœæ¯Žå›žãƒ«ãƒ¼ãƒˆãŒæ•£ã‚‰ã‹ã‚‹ã®ã‹ï¼š** +1. テスト実行時ã«ã‚«ãƒ¬ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ãƒ­ã‚°å‡ºåŠ› +2. エラー時ã®ãƒ‡ãƒãƒƒã‚°ãƒ•ァイルãŒè‡ªå‹•削除ã•れãªã„ +3. VM統計やMIRダンプãŒãƒ‡ãƒ•ォルトã§ã‚«ãƒ¬ãƒ³ãƒˆã«å‡ºåŠ› ```bash # 基本機能テスト @@ -514,8 +533,8 @@ mkdir -p local_tests echo 'print("Hello Nyash!")' > local_tests/test_hello.nyash ./target/debug/nyash local_tests/test_hello.nyash -# 演算å­çµ±åˆãƒ†ã‚¹ãƒˆ -./target/debug/nyash test_comprehensive_operators.nyash +# 演算å­çµ±åˆãƒ†ã‚¹ãƒˆï¼ˆlocal_testsã‹ã‚‰å®Ÿè¡Œï¼‰ +./target/debug/nyash local_tests/test_comprehensive_operators.nyash # 実用アプリテスト ./target/debug/nyash app_dice_rpg.nyash diff --git a/build_errors_only.txt b/build_errors_only.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/builder_original_analysis.txt b/builder_original_analysis.txt deleted file mode 100644 index 3ec777ae..00000000 --- a/builder_original_analysis.txt +++ /dev/null @@ -1,1300 +0,0 @@ -[ - { - "file_info": { - "name": "builder.rs", - "path": "src/mir/builder.rs", - "language": "rust", - "size_bytes": 65692, - "total_lines": 1547, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:56:27.768296576Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_builder_debug_enabled", - "name": "builder_debug_enabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_builder_debug_log", - "name": "builder_debug_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_type_check", - "name": "emit_type_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_cast", - "name": "emit_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_weak_new", - "name": "emit_weak_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_weak_load", - "name": "emit_weak_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_barrier_read", - "name": "emit_barrier_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_barrier_write", - "name": "emit_barrier_write", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_lower_method_as_function", - "name": "lower_method_as_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_module", - "name": "build_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_expression", - "name": "build_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 494, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_literal", - "name": "build_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 514, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_binary_op", - "name": "build_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 541, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_unary_op", - "name": "build_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_variable_access", - "name": "build_variable_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 566, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_assignment", - "name": "build_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 576, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_function_call", - "name": "build_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 615, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_print_statement", - "name": "build_print_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 668, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_block", - "name": "build_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 687, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 686, - "column_start": 37, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_if_statement", - "name": "build_if_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 757, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 749, - "column_start": 72, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_assigned_var", - "name": "extract_assigned_var", - "symbol_type": "Function", - "file_path": "", - "line_start": 761, - "line_end": 772, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 768, - "column_start": 43, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_instruction", - "name": "emit_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 801, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_block_exists", - "name": "ensure_block_exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 814, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_loop_statement", - "name": "build_loop_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 821, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_try_catch_statement", - "name": "build_try_catch_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 903, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_throw_statement", - "name": "build_throw_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 906, - "line_end": 918, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_local_statement", - "name": "build_local_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 921, - "line_end": 946, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 942, - "line_end": 945, - "column_start": 37, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_return_statement", - "name": "build_return_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 968, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_static_main_box", - "name": "build_static_main_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 971, - "line_end": 989, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_field_access", - "name": "build_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 1038, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_new_expression", - "name": "build_new_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1041, - "line_end": 1076, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_field_assignment", - "name": "build_field_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 1079, - "line_end": 1116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_new_block", - "name": "start_new_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 1119, - "line_end": 1127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_current_block_terminated", - "name": "is_current_block_terminated", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_convert_binary_operator", - "name": "convert_binary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_convert_unary_operator", - "name": "convert_unary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 1159, - "line_end": 1166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_nowait_statement", - "name": "build_nowait_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1169, - "line_end": 1184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_await_expression", - "name": "build_await_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1187, - "line_end": 1201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_me_expression", - "name": "build_me_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1204, - "line_end": 1219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_method_call", - "name": "build_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1222, - "line_end": 1348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_type_name_to_mir", - "name": "parse_type_name_to_mir", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_string_literal", - "name": "extract_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1364, - "line_end": 1376, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_from_expression", - "name": "build_from_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_box_declaration", - "name": "build_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1409, - "line_end": 1447, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 1458, - "line_end": 1460, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_literal_building", - "name": "test_literal_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1469, - "line_end": 1483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_op_building", - "name": "test_binary_op_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1486, - "line_end": 1511, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_statement_building", - "name": "test_if_statement_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1514, - "line_end": 1546, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirBuilder", - "name": "MirBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOpType", - "name": "BinaryOpType", - "symbol_type": "Class", - "file_path": "", - "line_start": 1452, - "line_end": 1455, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - } -] \ No newline at end of file diff --git a/chatgpt5_build_errors.txt b/chatgpt5_build_errors.txt deleted file mode 100644 index d12b9ae7..00000000 --- a/chatgpt5_build_errors.txt +++ /dev/null @@ -1,24 +0,0 @@ -ChatGPT5ŸÅkˆ‹Óëɨéü: - -1. [E0599] no method named `call_fini` found for reference `&enabled::PluginBoxV2` - 4@: src/scope_tracker.rs:45:28 - ¨éü: plugin.call_fini() - á½ÃÉLX(WjD - -2. [E0308] mismatched types (2‡@) - 4@: src/interpreter/core.rs:579:45, 618:45 - ¨éü: &**v - expected `&Box`, found `&dyn NyashBox` - -3. [E0615] attempted to take value of method `instance_id` (3‡@) - 4@: - - src/interpreter/expressions/calls.rs:695:98 - - src/interpreter/expressions/calls.rs:785:98 - - src/backend/vm.rs:567:90 - ¨éü: plugin.instance_id - á½ÃÉ’Õ£üëÉhWf( - îcH: plugin.instance_id() k ô - -4. [E0609] no field `invoke_fn` on type `&enabled::PluginBoxV2` - 4@: src/runtime/plugin_loader_v2.rs:139:19 - ¨éü: self.invoke_fn - X(WjDÕ£üëÉ - îcH: self.inner.invoke_fn - -: 7 n³óѤë¨éü \ No newline at end of file diff --git a/chatgpt5_build_errors_updated.txt b/chatgpt5_build_errors_updated.txt deleted file mode 100644 index 2e72d90b..00000000 --- a/chatgpt5_build_errors_updated.txt +++ /dev/null @@ -1,21 +0,0 @@ -ChatGPT5実装ã«ã‚ˆã‚‹æ›´æ–°å¾Œã®ãƒ“ルドエラー: - -改善ã•れãŸç‚¹ï¼ˆä¿®æ­£æ¸ˆã¿ï¼‰: -- ✅ call_fini() メソッドエラー解決 -- ✅ instance_id フィールド/メソッドエラー解決 -- ✅ invoke_fn フィールドエラー解決 - -残存エラー(2個): - -1. [E0308] mismatched types - src/interpreter/core.rs:579:45 - エラー: &**v - expected `&Box`, found `&dyn NyashBox` - -2. [E0308] mismatched types - src/interpreter/core.rs:618:45 - エラー: &**v - expected `&Box`, found `&dyn NyashBox` - -推奨修正: -- &**v ã‚’ v ã«å¤‰æ›´ï¼ˆArcã¸ã®å‚ç…§ã¨ã—ã¦æ‰±ã†ï¼‰ -- ã¾ãŸã¯åž‹æ³¨é‡ˆã‚’ &dyn NyashBox ã«å¤‰æ›´ - -影響範囲: -- interpreter/core.rsã®ã¿ï¼ˆä»–ã®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã®ã‚¨ãƒ©ãƒ¼ã¯è§£æ±ºæ¸ˆã¿ï¼‰ \ No newline at end of file diff --git a/check_output.txt b/check_output.txt deleted file mode 100644 index 5d420a90..00000000 --- a/check_output.txt +++ /dev/null @@ -1,53 +0,0 @@ -src/interpreter/core.rs:33:14: warning: unused macro definition: `debug_trace` -src/mir/loop_builder.rs:9:21: warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` -src/mir/loop_builder.rs:13:33: warning: unused import: `HashSet` -src/backend/mod.rs:13:7: warning: unexpected `cfg` condition value: `llvm` -src/backend/mod.rs:23:7: warning: unexpected `cfg` condition value: `llvm` -src/backend/vm_phi.rs:9:41: warning: unused import: `MirInstruction` -src/bid/types.rs:1:5: warning: unused import: `super::Usize` -src/bid/plugin_api.rs:2:5: warning: unused import: `std::os::raw::c_char` -src/bid/plugins/filebox/mod.rs:7:18: warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` -src/bid/plugins/filebox/mod.rs:10:28: warning: unused imports: `SeekFrom` and `Seek` -src/bid/plugins/filebox/mod.rs:11:20: warning: unused imports: `c_char` and `c_void` -src/bid/plugins/filebox/mod.rs:13:16: warning: unused imports: `CStr` and `CString` -src/bid/loader.rs:4:5: warning: unused import: `std::ffi::c_void` -src/bid/generic_plugin_box.rs:5:23: warning: unused imports: `TlvDecoder` and `TlvEncoder` -src/bid/generic_plugin_box.rs:6:5: warning: unused import: `crate::bid::types::BidTag` -src/runtime/plugin_loader_v2.rs:10:47: warning: unused import: `BoxBase` -src/runtime/plugin_loader_v2.rs:14:9: warning: unused import: `std::ffi::c_void` -src/box_factory/plugin.rs:53:13: warning: unused variable: `registry`: help: if this is intentional, prefix it with an underscore: `_registry` -src/interpreter/expressions/calls.rs:739:13: warning: variable does not need to be mutable -src/interpreter/objects.rs:1106:17: warning: variable does not need to be mutable -src/instance_v2.rs:147:28: warning: unused variable: `args`: help: if this is intentional, prefix it with an underscore: `_args` -src/instance_v2.rs:289:21: warning: unused variable: `nyash_value`: help: if this is intentional, prefix it with an underscore: `_nyash_value` -src/mir/loop_builder.rs:246:39: warning: unused variable: `block_id`: help: if this is intentional, prefix it with an underscore: `_block_id` -src/mir/loop_builder.rs:273:49: warning: unused variable: `block_id`: help: if this is intentional, prefix it with an underscore: `_block_id` -src/backend/vm_phi.rs:48:9: warning: unused variable: `dst`: help: if this is intentional, prefix it with an underscore: `_dst` -src/bid/plugin_api.rs:167:36: warning: unused variable: `f`: help: if this is intentional, prefix it with an underscore: `_f` -src/bid/plugin_api.rs:167:26: warning: variable does not need to be mutable -src/bid/plugin_api.rs:176:35: warning: unused variable: `f`: help: if this is intentional, prefix it with an underscore: `_f` -src/bid/plugin_api.rs:176:25: warning: variable does not need to be mutable -src/bid/plugin_api.rs:183:34: warning: unused variable: `f`: help: if this is intentional, prefix it with an underscore: `_f` -src/bid/plugin_api.rs:183:24: warning: variable does not need to be mutable -src/runtime/plugin_loader_v2.rs:270:46: warning: unused variable: `args`: help: if this is intentional, prefix it with an underscore: `_args` -src/bid/plugins/filebox/mod.rs:44:5: warning: type `FileMode` is more private than the item `FileBoxRegistry::open`: method `FileBoxRegistry::open` is reachable at visibility `pub` -src/mir/loop_builder.rs:35:5: warning: field `block_var_maps` is never read -src/bid/metadata.rs:148:5: warning: fields `type_name_holder` and `method_holders` are never read -src/bid/plugins/filebox/mod.rs:24:5: warning: fields `path` and `mode` are never read -src/runtime/plugin_loader_v2.rs:24:5: warning: fields `box_types` and `init_fn` are never read -src/mir/loop_builder.rs:62:9: warning: unused `Result` that must be used -src/mir/loop_builder.rs:66:9: warning: unused `Result` that must be used -src/mir/loop_builder.rs:78:9: warning: unused `Result` that must be used -src/mir/loop_builder.rs:79:9: warning: unused `Result` that must be used -src/mir/loop_builder.rs:93:9: warning: unused `Result` that must be used -src/bid/plugins/filebox/mod.rs:102:12: warning: creating a shared reference to mutable static: shared reference to mutable static -src/bid/plugins/filebox/mod.rs:105:9: warning: creating a shared reference to mutable static: shared reference to mutable static -warning: `nyash-rust` (lib) generated 44 warnings (run `cargo fix --lib -p nyash-rust` to apply 19 suggestions) - Checking nyash-rust v0.1.0 (/mnt/c/git/nyash-project/nyash) -src/backend/vm.rs:18:12: error[E0432]: unresolved import `crate::scope_tracker`: unresolved import, help: a similar path exists: `nyash_rust::scope_tracker` -src/runner.rs:22:7: warning: unexpected `cfg` condition value: `llvm` -src/runner.rs:503:15: warning: unexpected `cfg` condition value: `llvm` -src/runner.rs:526:19: warning: unexpected `cfg` condition value: `llvm` -src/runner.rs:286:17: warning: variable does not need to be mutable -warning: `nyash-rust` (bin "nyash") generated 36 warnings (32 duplicates) -error: could not compile `nyash-rust` (bin "nyash") due to 1 previous error; 36 warnings emitted diff --git a/docs/development/current/CURRENT_TASK.md b/docs/development/current/CURRENT_TASK.md index 81b64f96..3577604f 100644 --- a/docs/development/current/CURRENT_TASK.md +++ b/docs/development/current/CURRENT_TASK.md @@ -7,9 +7,14 @@ ### ç›´è¿‘ã®å®Ÿè¡Œã‚¿ã‚¹ã‚¯ï¼ˆ9.78h) 1) 一時デãƒãƒƒã‚°ãƒ­ã‚°ã®æŠ‘制(`NYASH_VM_DEBUG_*`ã®ã¿ï¼‰ + - 進æ—: Runnerã®ãƒãƒŠãƒ¼/ãƒ—ãƒ©ã‚°ã‚¤ãƒ³åˆæœŸåŒ–ログ㯠`NYASH_CLI_VERBOSE`/`NYASH_DEBUG_PLUGIN` ã®ã¿ã§å‡ºåŠ›ã€‚ + VMã®é€æ¬¡ãƒ­ã‚°ã¯ `NYASH_VM_DEBUG[_EXEC|_CMP|_ANDOR|_PHI]` ã«é™å®šã€‚ 2) Phiæ­£è¦åŒ–(LoopExecutorã®å€Ÿç”¨è¡çªè§£æ¶ˆ → æ­£ã—ã„é¸æŠžã¸å¾©å¸°ï¼‰ + - 進æ—: VMå´ã®é¸æŠžã‚’ `previous_block` 基準ã«å¾©å¸°ï¼ˆfallback: 先頭)。`NYASH_VM_DEBUG_PHI=1` ã§ãƒ­ã‚°ã€‚ + - 設計: docs/development/current/PHI_NORMALIZATION_PLAN.md ã‚’å‚照(段階プラン/次アクション)。 3) 基本ボックス統一(StringBox/BoolBoxã‚‚re-export化) 4) VM分割ã®å°Žç·šï¼ˆcontrol_flow/dispatch/frameã¸åˆ†é›¢è¨­è¨ˆï¼‰ + - 進æ—: `src/backend/{control_flow.rs,dispatch.rs,frame.rs}` を追加(骨組ã¿ï¼‰ã€‚ビルド通éŽã€‚ 5) 代表スナップショット追加(compare/loop/typeop_mixed) ### ã™ã試ã›ã‚‹ã‚³ãƒžãƒ³ãƒ‰ @@ -73,8 +78,16 @@ nyash --backend vm local_tests/and_or_truthy_vm.nyash # 期待: false,true,fals - æ—¢çŸ¥ã®æœªè§£æ±º: ループ比較㧠`BoxRef(IntegerBox) < BoxRef(IntegerBox)` ㌠TypeError。 - 対応中: 比較å‰ã« i64 ã¸æ­£è¦åŒ–ã™ã‚‹ãƒ•ォールãƒãƒƒã‚¯ã‚’VMã«å®Ÿè£…(downcast→toString→parse)。 - 80/20ãƒãƒªã‚·ãƒ¼: 数値ã«ãƒ‘ースå¯èƒ½ãªã‚‰æ¯”較継続ã€å¤±æ•—時ã®ã¿TypeError。 + +### 🆕 進æ—(2025-08-26 åˆå‰ï¼‰ +- TypeError(`And/Or` 経路)å†ç™ºãªã—を確èªï¼ˆ3スモーク緑: compare/and_or/and_or_truthy)。 +- ログ抑制ã®å¾¹åº•: Runner/VMã®ãƒ‡ãƒãƒƒã‚°å‡ºåŠ›ã‚’æ—¢å®šã§é™éŸ³ã€ç’°å¢ƒå¤‰æ•°ã§ã®ã¿æœ‰åŠ¹åŒ–ã€‚ +- Phiæ­£è¦åŒ– Step1: `previous_block` ã«ã‚ˆã‚‹Phiå…¥åŠ›é¸æŠžã‚’VMã«å®Ÿè£…(`NYASH_VM_DEBUG_PHI=1`)。 +- VM分割ã®éª¨çµ„ã¿: `control_flow.rs`/`dispatch.rs`/`frame.rs` 追加(今後段階移動)。 +- レガシー削除: `src/mir/builder_old.rs`, `src/mir/builder.rs.backup`, `src/parser.rs.backup`, `src/instance.rs.backup`, `src/box_trait.rs.backup` を削除。 +- objects.rs 分解 Step1: `execute_new` ã‚’ãƒ˜ãƒ«ãƒ‘ï¼ˆä¸‰åˆ†å‰²ï¼‰ã¸æŠ½å‡ºã—スリム化(等価挙動)。 -### 🎯 次ã®å„ªå…ˆã‚¿ã‚¹ã‚¯ +### 🎯 次ã®å„ªå…ˆã‚¿ã‚¹ã‚¯ï¼ˆæ›´æ–°ï¼‰ 1. **copilot_issues.txtã®ç¢ºèª** - Phase 8.4: AST→MIR Lowering完全実装(最優先) @@ -87,6 +100,16 @@ nyash --backend vm local_tests/and_or_truthy_vm.nyash # 期待: false,true,fals - ä»£æ›¿çµŒè·¯ã®æ´—ã„出ã—: `src/` 全体㧠`execute_binop`/`And`/`Unsupported binary operation` ã‚’å†èµ°æŸ»ã—ã€å½±éŸ¿ç®‡æ‰€ã‚’一掃。 - 修正後ã€`local_tests/and_or_vm.nyash` ã§ `false/true` ã®å‡ºåŠ›ã‚’ç¢ºèªã€‚ - ルート確定: Compare経路ã¯Builderå´ã®Castå°Žç·šã§å®‰å®šã€‚VMå´ã¯ä¿é™ºãƒ•ォールãƒãƒƒã‚¯ã‚’ç¶­æŒã—ã¤ã¤ä¸€æ™‚ログを抑制ã¸ã€‚ +1.6 **objects.rs 分解 Step2(安全ã«ãƒ•ァイル分割)** + - `objects_impl.rs` ã‚’å°Žå…¥ã—ã€æŠ½å‡ºæ¸ˆã¿ãƒ˜ãƒ«ãƒ‘を移動。本体ã¯è–„ã„ラッパã«ã€‚ + - 以é™: `objects/{fields.rs,methods.rs,ops.rs}` ã¸ã®æ®µéšŽåˆ†è§£ã€‚ + +1.7 **runner.rs 分離** + - `init_bid_plugins` ã‚’ `runner/plugin_init.rs` ã¸æŠ½å‡ºã€‚å„モードを `runner/modes/*.rs` ã«ã€‚ + +1.8 **VMåˆ†å‰²ã®æ®µéšŽç§»å‹•** + - ブロックé·ç§»ã‚’ `control_flow.rs`ã€ãƒ•レーム状態を `frame.rs` ã«ç§»ã—ã€`dispatch.rs` ã®å°Žç·šã‚’準備。 + 2. **MIR26命令対応** - TypeOp/WeakRef/Barrierã®ãƒ—リンタ拡張 - スナップショット整備(extern_call/loop/boxcall/typeop_mixed 追加済) diff --git a/docs/development/current/PHI_NORMALIZATION_PLAN.md b/docs/development/current/PHI_NORMALIZATION_PLAN.md new file mode 100644 index 00000000..87ce37ee --- /dev/null +++ b/docs/development/current/PHI_NORMALIZATION_PLAN.md @@ -0,0 +1,26 @@ +# Phi æ­£è¦åŒ–プラン(9.78h スキャフォールド) + +目的: ループ/分å²ã«ãŠã‘ã‚‹ Phi é¸æŠžã‚’æ­£é“ã«æˆ»ã—ã€å€Ÿç”¨è¡çªã‚’é¿ã‘ã¤ã¤æ®µéšŽå°Žå…¥ã™ã‚‹ã€‚ + +段階プラン(80/20) +- Step 1: 実行系ã§ã®é¸æŠžå¾©å¸°ï¼ˆå®Œäº†ï¼‰ + - `previous_block` ã«åŸºã¥ã `inputs[(bb==prev)]` ã‚’é¸æŠžã€‚è¦‹ã¤ã‹ã‚‰ãªã„å ´åˆã¯å…ˆé ­ã‚’フォールãƒãƒƒã‚¯ã€‚ + - デãƒãƒƒã‚°: `NYASH_VM_DEBUG_PHI=1` ã§é¸æŠžãƒ­ã‚°ã€‚ +- Step 2: LoopExecutor é€£æº + - `VM::loop_execute_phi` ã‚’ `LoopExecutor::execute_phi` ã«å§”譲(安全ãªå€Ÿç”¨æ§‹æˆã«æ•´ç†ï¼‰ã€‚ + - `record_transition(from,to)` ã‚’ã‚‚ã¨ã«ãƒ˜ãƒƒãƒ€æ¤œå‡ºãƒ»ã‚¤ãƒ†ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³æƒ…報を活用。 +- Step 3: æ­£è¦ SSA ã¸ã®å¾©å¸° + - Builder å´ã§ phi 挿入・seal・predecessor æ›´æ–°ã‚’æ­£é“ã§å®Ÿè£…。 + - Verifier ã« phi 一貫性(定義支é…/マージ使用)ãƒã‚§ãƒƒã‚¯ã‚’追加・厳格化。 +- Step 4: ログ削減ã¨ãƒ†ã‚¹ãƒˆ + - 代表ケース(loop/if-merge/while)をスナップショット化。 + - 既定ã§é™éŸ³ã€`NYASH_VM_DEBUG_PHI` ã®ã¿ã§è©³ç´°ã€‚ + +実装状æ³ï¼ˆ2025-08-26) +- Step 1 完了: `VM::loop_execute_phi` ㌠`previous_block` ã«ã‚ˆã‚‹é¸æŠžã«å¯¾å¿œã€‚ +- 既知ã®èª²é¡Œ: LoopExecutor 経由ã®å€Ÿç”¨å®‰å…¨ãªå§”譲(Step 2)。 + +次アクション +- VM 内部㮠phi 実行を LoopExecutor ã¸å§”è­²ã§ãるよㆠAPI を見直ã—(`get_value` クロージャã®å€Ÿç”¨å¢ƒç•Œã‚’調整)。 +- Builder å´ã® phi æ­£è¦åŒ– TODO ã‚’ CURRENT_TASK ã«è¿½è¨˜ã€‚ + diff --git a/docs/ideas/improvements/2025-08-25-vm-comparison-refactoring.md b/docs/ideas/improvements/2025-08-25-vm-comparison-refactoring.md new file mode 100644 index 00000000..744a1201 --- /dev/null +++ b/docs/ideas/improvements/2025-08-25-vm-comparison-refactoring.md @@ -0,0 +1,92 @@ +# VM比較処ç†ã®ãƒªãƒ•ァクタリング +Status: Pending (80%実装済ã¿) +Created: 2025-08-25 +Priority: Medium +Related-Code: src/backend/vm_instructions.rs::execute_compare(), src/backend/vm_values.rs::execute_compare_op() + +## ç¾çŠ¶ï¼ˆ80%実装) +- BoxRef比較ã®TypeErrorã¯è§£æ±ºæ¸ˆã¿ +- æ­£è¦åŒ–処ç†ãŒ2箇所ã«åˆ†æ•£ï¼ˆexecute_compare, execute_compare_op) +- デãƒãƒƒã‚°ãƒ­ã‚°ãŒè¤‡æ•°ã®ç’°å¢ƒå¤‰æ•°ã«ä¾å­˜ +- 基本動作ã¯å®Œå…¨ã«æ­£å¸¸ + +## å•題点 +1. **é‡è¤‡ã—ãŸæ­£è¦åŒ–ロジック** + - vm_instructions.rs: BoxRef → Integerå¤‰æ› + - vm_values.rs: åŒæ§˜ã®å¤‰æ›å‡¦ç† + +2. **デãƒãƒƒã‚°ã®è¤‡é›‘ã•** + - NYASH_VM_DEBUG + - NYASH_VM_DEBUG_CMP + - 複数箇所ã§ã®ãƒ­ã‚°å‡ºåŠ› + +3. **エラーパスã®è¤‡é›‘ã•** + - "[BoxRef-BoxRef]", "[BoxRef-Integer]", "[Integer-BoxRef]", "[Default]" + - ã©ã“ã§ã‚¨ãƒ©ãƒ¼ãŒå‡ºã‚‹ã‹äºˆæ¸¬å›°é›£ + +## 改善案(残り20%) + +### 1. æ­£è¦åŒ–ã‚’å˜ä¸€é–¢æ•°ã«çµ±ä¸€ +```rust +fn canonicalize_for_comparison(value: VMValue) -> VMValue { + match value { + VMValue::BoxRef(b) => { + // IntegerBox → Integer + if let Some(ib) = b.as_any().downcast_ref::() { + return VMValue::Integer(ib.value); + } + // String parse fallback + if let Ok(n) = b.to_string_box().value.trim().parse::() { + return VMValue::Integer(n); + } + VMValue::BoxRef(b) + } + other => other, + } +} +``` + +### 2. 比較処ç†ã®éšŽå±¤åŒ– +```rust +impl VM { + // エントリーãƒã‚¤ãƒ³ãƒˆ + pub fn execute_compare(...) { + let left = self.canonicalize_value(lhs)?; + let right = self.canonicalize_value(rhs)?; + let result = self.compare_canonical(op, &left, &right)?; + self.set_value(dst, VMValue::Bool(result)); + } + + // æ­£è¦åŒ– + fn canonicalize_value(&self, id: ValueId) -> Result { + let raw = self.get_value(id)?; + Ok(canonicalize_for_comparison(raw)) + } + + // 比較実行 + fn compare_canonical(&self, op: &CompareOp, left: &VMValue, right: &VMValue) -> Result { + // ã‚·ãƒ³ãƒ—ãƒ«ãªæ¯”較ロジックã®ã¿ + } +} +``` + +### 3. デãƒãƒƒã‚°ãƒˆãƒ¬ãƒ¼ã‚¹ã®çµ±ä¸€ +```rust +struct ComparisonTrace { + original_left: VMValue, + original_right: VMValue, + canonical_left: VMValue, + canonical_right: VMValue, + result: Result, +} +``` + +## 実装タイミング +- [ ] 次ã®å¤§ããªãƒã‚°ãŒå‡ºãŸã¨ã +- [ ] Phase 10ã®æœ€é©åŒ–フェーズ +- [ ] æ–°ã—ã„æ¯”較演算å­è¿½åŠ æ™‚ + +## メリット +- デãƒãƒƒã‚°ãŒå®¹æ˜“ã«ãªã‚‹ +- æ–°ã—ã„åž‹ã®æ¯”較追加ãŒç°¡å˜ +- ãƒ†ã‚¹ãƒˆãŒæ›¸ãã‚„ã™ããªã‚‹ \ No newline at end of file diff --git a/e2e_filebox_test_error.txt b/e2e_filebox_test_error.txt deleted file mode 100644 index b1924634..00000000 --- a/e2e_filebox_test_error.txt +++ /dev/null @@ -1,19 +0,0 @@ -FileBox Plugin E2E Test Results: - -Build Status: -- Main build: ✅ Success -- Plugin build: ✅ Success (with 3 warnings) - -Test Results: -- e2e_interpreter_plugin_filebox_close_void: ✅ PASSED -- e2e_vm_plugin_filebox_close_void: ✅ PASSED -- e2e_interpreter_plugin_filebox_delegation: ⌠FAILED - -Failure Details: -⌠Interpreter error: Invalid operation: birth() method not yet implemented for builtin box 'FileBox' - -The error occurs when trying to create a LoggingFileBox that delegates from FileBox. -The test expects to use birth() constructor but FileBox (as a plugin) doesn't implement it yet. - -This suggests the plugin system is working correctly (FileBox is recognized), but the -birth() constructor delegation for plugin boxes needs implementation. \ No newline at end of file diff --git a/e2e_test_error.txt b/e2e_test_error.txt deleted file mode 100644 index 52110b0c..00000000 --- a/e2e_test_error.txt +++ /dev/null @@ -1,31 +0,0 @@ -NEW ERROR AFTER FIX: - -running 2 tests -test e2e_create_echo_box_and_return_string ... FAILED -test e2e_create_adder_box_and_return_sum ... FAILED - -failures: - ----- e2e_create_echo_box_and_return_string stdout ---- -⌠Interpreter error: Return outside of function - -thread 'e2e_create_echo_box_and_return_string' panicked at tests/e2e_plugin_echo.rs:102:33: -exec ok: ReturnOutsideFunction -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace - ----- e2e_create_adder_box_and_return_sum stdout ---- -⌠Interpreter error: Return outside of function - -thread 'e2e_create_adder_box_and_return_sum' panicked at tests/e2e_plugin_echo.rs:114:33: -exec ok: ReturnOutsideFunction - - -failures: - e2e_create_adder_box_and_return_sum - e2e_create_echo_box_and_return_string - -test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.08s - -PROGRESS: The Box types (EchoBox, AdderBox) are now recognized! -The error changed from "Unknown Box type" to "Return outside of function". -This suggests the unified registry is working correctly after ChatGPT5's fix. \ No newline at end of file diff --git a/err.txt b/err.txt deleted file mode 100644 index 0d6c3be2..00000000 --- a/err.txt +++ /dev/null @@ -1,16 +0,0 @@ -🔠DEBUG: Initializing v2 plugin system -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_counter_plugin.so -Net plugin: LOG_ON=false, LOG_PATH=net_plugin.log -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_net_plugin.so -[FileBox] Plugin initialized -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_filebox_plugin.so - 📦 Registering plugin provider for CounterBox - 📦 Registering plugin provider for HttpServerBox - 📦 Registering plugin provider for HttpClientBox - 📦 Registering plugin provider for HttpResponseBox - 📦 Registering plugin provider for HttpRequestBox - 📦 Registering plugin provider for SocketServerBox - 📦 Registering plugin provider for SocketClientBox - 📦 Registering plugin provider for SocketConnBox - 📦 Registering plugin provider for FileBox -⌠VM execution error: Type error: Unsupported comparison: Lt on BoxRef(IntegerBox { value: 0, base: BoxBase { id: 3, parent_type_id: None } }) and BoxRef(IntegerBox { value: 3, base: BoxBase { id: 7, parent_type_id: None } }) diff --git a/example.txt b/example.txt deleted file mode 100644 index 667859eb..00000000 --- a/example.txt +++ /dev/null @@ -1 +0,0 @@ -hello nyash \ No newline at end of file diff --git a/final_test_output.txt b/final_test_output.txt deleted file mode 100644 index b740d338..00000000 --- a/final_test_output.txt +++ /dev/null @@ -1,9838 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (42 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (bin "nyash") generated 45 warnings (44 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.29s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test bid::metadata::tests::test_host_vtable ... ok -test box_arithmetic::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_modulo_box ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_compare_box ... ok -test bid::types::tests::test_handle_packing ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -test box_arithmetic::tests::test_multiply_box ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test backend::vm::tests::test_binary_operations ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test box_operators::tests::test_integer_addition ... ok -test box_arithmetic::tests::test_subtract_box ... ok -test ast::tests::test_ast_node_creation ... ok -test ast::tests::test_binary_operator ... ok -test ast::tests::test_method_call ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test box_operators::tests::test_string_concatenation ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test backend::vm_phi::tests::test_phi_selection ... ok -test box_factory::tests::test_registry_creation ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test box_arithmetic::tests::test_divide_box ... okProgram - -🔠DEBUG: Executing program with 1test box_operators::tests::test_string_repetition ... ok statements -🔠DEBUG: Executing statement -1 of test box_operators::tests::test_can_add_with ... ok1: -BoxDeclaration -test box_operators::tests::test_dynamic_addition ... ok -test bid::types::tests::test_type_tags ... ok -test box_arithmetic::tests::test_modulo_by_zero ... ok -test ast::tests::test_binary_operation ... ok -test box_trait::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_divide_by_zero ... ok -test bid::types::tests::test_arg_type_mapping ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -🔠execute_statement called with node type: "test box_trait::tests::test_add_box_strings ... okBoxDeclaration" - -test box_trait::tests::test_bool_box_creation ... 🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'okMain' definition registered in statics namespace - -🔠DEBUG: Statement 1Instance: StringBox - completed -Instance: MyBox -🔠DEBUG: Starting interpreter execution... -test box_trait::tests::test_box_equality ... 🔠DEBUG: execute_node called with node type: Programok - -test box_trait::tests::test_box_ids_unique ... ok🔠DEBUG: Executing program with 1 - statements -test ast::tests::test_complex_ast ... ok🔠DEBUG: Executing statement 1 - of 1test box_trait::tests::test_integer_box_creation ... ok: Assignment - -test box_trait::tests::test_string_box_creation ... ok🔠execute_statement called with node type: " -Assignment"test bid::bridge::tests::test_string_box_bid_conversion ... ok - -🔠About to call execute_assignment... -test bid::bridge::tests::test_box_registry ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest bid::bridge::tests::test_integer_box_bid_conversion ... ok, with 1 - arguments -test box_trait::tests::test_void_box ... ok🔠Trying unified registry for class: IntegerBox - -test bid::bridge::tests::test_future_box_bid_conversion ... ok🌠statics namespace already exists - skipping creation - -🔠DEBUG: Starting interpreter execution... -test boxes::null_box::tests::test_get_or_default ... ok🔠DEBUG: execute_node called with node type: Program - -test boxes::null_box::tests::test_null_check ... ok🔠DEBUG: Executing program with 2 - statements -test boxes::null_box::tests::test_null_creation ... ok🔠DEBUG: Executing statement 1 - of 2test boxes::null_box::tests::test_null_equality ... ok: Assignment - -test cli::tests::test_default_config ... ok🔠execute_statement called with node type: " -Assignment"test cli::tests::test_parse_debug_fuel ... ok - -🔠About to call execute_assignment... -test environment::tests::test_error_handling ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: BoolBoxtest environment::tests::test_global_environment ... ok, with 1 - arguments -test environment::tests::test_nested_scopes ... ok🔠Trying unified registry for class: BoolBox - -test environment::tests::test_python_compat ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_scope_info ... ok - -🔠DEBUG: Executing program with 2test environment::tests::test_variable_setting ... ok statements - -🔠DEBUG: Executing statement 1test environment::tests::test_variable_shadowing ... ok of 2 -: Assignmenttest finalization::tests::test_finalization_tracking ... ok - -🔠execute_statement called with node type: "test instance_v2::tests::test_field_operations ... okAssignment" - -test instance_v2::tests::test_from_any_box_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test instance_v2::tests::test_from_declaration_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test instance_v2::tests::test_unified_approach ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest bid::plugins::filebox::tests::test_filebox_plugin ... ok - -🔥 Static box 'Maintest config::nyash_toml_v2::tests::test_parse_v2_config ... ok' instance registered in statics namespace - -🔠DEBUG: Starting interpreter execution... -test mir::basic_block::tests::test_basic_block_creation ... ok🔠DEBUG: execute_node called with node type: Program - -test mir::basic_block::tests::test_basic_block_id_generator ... ok🔠DEBUG: Executing program with 4 - statements -test mir::basic_block::tests::test_branch_successors ... ok🔠DEBUG: Executing statement 1 - of 4test mir::basic_block::tests::test_instruction_addition ... ok: BoxDeclaration - -test mir::basic_block::tests::test_phi_instruction_ordering ... ok🔠execute_statement called with node type: " -BoxDeclaration"test mir::basic_block::tests::test_terminator_addition ... ok - -🭠Unified registry created: IntegerBoxtest mir::basic_block::tests::test_value_tracking ... ok - -🔠execute_statement called with node type: "test mir::builder::tests::test_binary_op_building ... okMethodCall" - -test mir::builder::tests::test_if_statement_building ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::builder::tests::test_literal_building ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::effect::tests::test_effect_combination ... ok - -🔠DEBUG: Statement 1test mir::effect::tests::test_effect_display ... ok completed - -🔠DEBUG: Executing statement 2test mir::effect::tests::test_effect_mask_creation ... ok of 4 -: Assignmenttest mir::effect::tests::test_effect_names ... ok - -🔠execute_statement called with node type: "test mir::effect::tests::test_effect_union ... okAssignment" - -test mir::effect::tests::test_parallel_safety ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::function::tests::test_function_creation ... ok🔠execute_new called for class: TestBox -, with 0test mir::function::tests::test_function_stats ... ok arguments - -🔠Trying unified registry for class: TestBoxtest mir::function::tests::test_module_creation ... ok - -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::function::tests::test_value_id_generation ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest mir::instruction::tests::test_barrier_instructions ... ok'... - -🔠DEBUG: Found 'staticstest mir::instruction::tests::test_binop_instruction ... ok' in GlobalBox - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_call_instruction ... ok - -✅ FIELD ACCESS: Returning shared reference id=143test mir::instruction::tests::test_const_instruction ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction::tests::test_extern_call_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_ref_get_instruction ... ok🔠execute_statement called with node type: " -Local"test mir::instruction::tests::test_ref_new_instruction ... ok - -🔠DEBUG: Statement 1test mir::instruction::tests::test_ref_set_instruction ... ok completed - -🔠DEBUG: Executing statement 2test mir::instruction::tests::test_weak_load_instruction ... ok of 2 -: Iftest mir::instruction::tests::test_weak_new_instruction ... ok - -🔠execute_statement called with node type: "test mir::instruction_v2::tests::test_effect_categories ... okIf" - -test mir::instruction_v2::tests::test_instruction_count ... ok🔠execute_statement called with node type: " -Assignment"test mir::instruction_v2::tests::test_ownership_operations ... ok - -🔠About to call execute_assignment... -test mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok, with 1 - arguments -test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok🔠Trying unified registry for class: IntegerBox - -test mir::printer::tests::test_empty_module_printing ... ok🭠Unified registry created: IntegerBox - -test mir::printer::tests::test_function_printing ... ok🔧 execute_binary_op: op=Add -, left=IntegerBoxtest mir::printer::tests::test_verbose_printing ... ok, right=IntegerBox - -test mir::tests::test_basic_mir_compilation ... ok🔠try_add_operation: left=IntegerBox -, right=IntegerBoxtest mir::tests::test_loop_compilation ... ok - -🔠After unwrap: left=IntegerBoxtest mir::tests::test_mir_dump ... ok, right=IntegerBox - -test mir::tests::test_throw_compilation ... ok🔠IntegerBox + IntegerBox detected - -🔠execute_assignment: value expression evaluated successfully -test mir::tests::test_try_catch_compilation ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] - -test mir::value_id::tests::test_local_id_creation ... ok🔠DEBUG: Checking GlobalBox for 'x -'... -test mir::value_id::tests::test_local_id_generator ... ok🔠DEBUG: Found 'x -' in GlobalBox -test mir::value_id::tests::test_value_id_creation ... ok🔠execute_statement called with node type: " -Assignment"test mir::value_id::tests::test_value_id_generator ... ok - -🔠About to call execute_assignment... -test mir::value_id::tests::test_value_id_ordering ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: StringBoxtest mir::verification::tests::test_undefined_value_detection ... ok, with 1 - arguments -test mir::verification::tests::test_valid_function_verification ... ok🔠Trying unified registry for class: StringBox - -test runtime::box_registry::tests::test_builtin_registration ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Statement 1test runtime::box_registry::tests::test_plugin_override ... ok completed - -🭠Unified registry created: TestBoxtest runtime::plugin_config::tests::test_parse_empty_config ... ok - -🔠DEBUG: Statement 1test runtime::plugin_config::tests::test_parse_simple_config ... ok completed - -🔠DEBUG: Executing statement 2test runtime::plugin_config::tests::test_parse_with_comments ... ok of 2 -: Printtest runtime::tests::tests::test_box_registry_builtin ... ok - -🔠execute_statement called with node type: "test runtime::tests::tests::test_box_registry_plugin_override ... okPrint" - -test runtime::tests::tests::test_multiple_plugin_types ... ok🭠Unified registry created: IntegerBox - -test runtime::tests::tests::test_plugin_config_parsing ... ok🔠DEBUG: Interpreter execution completed - -test runtime::tests::tests::test_transparent_box_switching ... 🔠execute_assignment: value expression evaluated successfully -ok -🔠DEBUG: resolve_variable: name='x', local_vars=[]test tests::box_tests::tests::test_array_box_nyash_trait ... ok - -test tests::box_tests::tests::test_box_id_uniqueness ... 🔠DEBUG: Checking GlobalBox for 'xok -'... -test tests::box_tests::tests::test_buffer_box_nyash_trait ... ok🔠DEBUG: Found 'x -test tests::box_tests::tests::test_future_box_nyash_trait ... ' in GlobalBox -ok🔠DEBUG: resolve_variable: name='result', local_vars=[] - -test tests::box_tests::tests::test_result_box_nyash_trait ... 🔠DEBUG: Checking GlobalBox for 'resultok'... - -🔠DEBUG: Found 'resulttest tests::box_tests::tests::test_stream_box_nyash_trait ... ' in GlobalBox -ok🭠Unified registry created: StringBox - -test tokenizer::tests::test_comments ... 🔠execute_assignment: value expression evaluated successfully -ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Statement 2test tests::box_tests::tests::test_json_box_nyash_trait ... completed -ok🔠DEBUG: Executing statement 3 - of 4test tokenizer::tests::test_complex_code ... : Assignmentok - -🔠execute_statement called with node type: "test tokenizer::tests::test_error_handling ... Assignment"ok - -🔠About to call execute_assignment... -test tokenizer::tests::test_identifier ... 🔠execute_assignment called, evaluating value expression... -ok🔠execute_new called for class: StringBox -, with 1test tokenizer::tests::test_line_numbers ... arguments -ok🔠Trying unified registry for class: StringBox - -test tokenizer::tests::test_number_literal ... 🔠DEBUG: Statement 2ok completed - -🔠execute_statement called with node type: "test tokenizer::tests::test_operators ... Assignment"ok - -🔠About to call execute_assignment... -test tokenizer::tests::test_simple_tokens ... 🔠execute_assignment called, evaluating value expression... -ok🔠execute_new called for class: IntegerBox -, with 1test tokenizer::tests::test_string_literal ... arguments -ok🔠Trying unified registry for class: IntegerBox - -test value::tests::test_basic_creation ... 🭠Unified registry created: StringBoxok - -🔠DEBUG: Interpreter execution completed -42 -🔠execute_assignment: value expression evaluated successfully -test value::tests::test_cross_type_equality ... ok🭠Unified registry created: IntegerBox - -test value::tests::test_object_creation ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Statement 2test value::tests::test_type_conversion ... ok completed - -🔠DEBUG: resolve_variable: name='obj', local_vars=[]test value::tests::test_type_names ... ok - -🔠DEBUG: Checking GlobalBox for 'objtest value::tests::test_weak_reference_basic ... ok'... - -test value::tests::test_weak_reference_drop ... 🔠DEBUG: Found 'objok -' in GlobalBox -test value::tests::test_weak_reference_equality ... ok🔠DEBUG: Interpreter execution completed - -🔠DEBUG: resolve_variable: name='y', local_vars=[]test value::tests::test_weak_reference_string_representation ... ok - -🔠DEBUG: Checking GlobalBox for 'ytest interpreter::core::tests::test_arithmetic ... ok'... - -🔠DEBUG: Found 'ytest interpreter::core::tests::test_simple_execution ... ok' in GlobalBox - -🔠execute_statement called with node type: "test interpreter::core::tests::test_if_statement ... Assignment"ok - -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=204 -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=184 -🔠DEBUG: resolve_variable: name='b', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=220 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -✅ FIELD ACCESS: Returning shared reference id=217 -🔠DEBUG: resolve_variable: name='result', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=229 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='c', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=226 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 4 completed -🔠DEBUG: resolve_variable: name='result', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=233 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='a', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=204 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='result', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=235 -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=["a", "c", "b", "me", "result"]test interpreter::core::tests::test_box_instance_creation ... ok -🔠DEBUG: Found ' -b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=220 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=238 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["a", "c", "b", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=238 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=247 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=256 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=260 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=266 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=264 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=268 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=256 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=270 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=260 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=272 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "a", "c", "result", "b"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=272 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=281 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=290 -🔠DEBUG: resolve_variable: name='b', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=294 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=300 -🔠DEBUG: resolve_variable: name='c', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=298 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=302 -🔠DEBUG: resolve_variable: name='a', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=290 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=304 -🔠DEBUG: resolve_variable: name='b', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=294 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=306 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "me", "result", "a", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=306 -🔠DEBUG: Interpreter execution completed -88 - ðŸŽï¸ VM: First run completed -88 -88 -🚀 Running benchmark: bench_medium -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=318 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=320 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=331 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=326 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=340 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=331 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=347 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=342 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=356 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=347 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=363 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=358 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=372 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=363 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=379 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=374 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=388 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=379 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=395 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=390 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=404 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=395 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=411 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=406 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=420 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=411 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=427 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=422 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=436 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=427 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=443 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=438 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=452 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=443 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=459 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=454 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=468 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=459 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=475 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=470 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=484 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=486 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=486 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=495 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=497 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=508 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=503 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=517 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=508 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=524 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=519 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=533 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=524 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=540 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=535 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=549 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=540 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=556 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=551 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=565 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=556 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=572 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=567 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=581 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=572 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=588 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=583 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=597 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=588 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=604 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=599 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=613 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=604 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=620 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=615 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=629 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=620 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=636 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=631 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=645 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=636 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=652 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=647 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=661 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=663 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=663 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=672 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=674 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=685 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=680 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=694 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=685 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=701 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=696 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=710 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=701 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=717 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=712 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=726 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=717 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=733 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=728 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=742 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=733 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=749 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=744 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=758 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=749 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=765 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=760 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=774 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=765 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=781 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=776 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=790 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=781 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=797 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=792 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=806 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=797 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=813 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=808 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=822 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=813 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=829 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=824 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=838 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=840 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "sum", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=840 -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=852 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=893 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=897 -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=901 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=905 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=909 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=915 -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=920 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=924 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=928 -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=915 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=920 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=931 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=935 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=893 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=939 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=897 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=901 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=905 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=943 -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=909 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=947 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=951 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=893 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=897 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=901 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=955 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=905 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=909 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=959 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=963 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=893 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=897 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=967 -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=901 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=905 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=909 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=971 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=975 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=893 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=979 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=897 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=901 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=905 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=983 -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=909 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=873 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=877 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=987 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=881 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=885 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=889 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=991 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "i", "e", "d", "a", "result1", "f", "j", "b", "c", "result5", "result2", "g", "me", "result3", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=991 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=1000 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1041 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1045 -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1049 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1053 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1057 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1063 -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1068 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1072 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1076 -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1063 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1068 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1079 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1083 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1041 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1087 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1045 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1049 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1053 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1091 -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1057 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1095 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1099 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1041 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1045 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1049 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1103 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1053 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1057 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1107 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1111 -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1041 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1045 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1115 -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1049 -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1053 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1057 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1119 -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1123 -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔠DEBUG: resolve_variable: name='f', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1041 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1127 -🔠DEBUG: resolve_variable: name='g', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1045 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1049 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1053 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1131 -🔠DEBUG: resolve_variable: name='j', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1057 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1021 -🔠DEBUG: resolve_variable: name='b', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1025 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1135 -🔠DEBUG: resolve_variable: name='c', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1029 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1033 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1037 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1139 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["h", "f", "e", "i", "result1", "result3", "j", "b", "result2", "result5", "a", "result4", "me", "g", "d", "c"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1139 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=1148 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔠DEBUG: resolve_variable: name='f', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1189 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1193 -🔠DEBUG: resolve_variable: name='h', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1197 -🔠DEBUG: resolve_variable: name='i', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1201 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1205 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1211 -🔠DEBUG: resolve_variable: name='result2', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1216 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1220 -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1224 -🔠DEBUG: resolve_variable: name='result1', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1211 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1216 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1227 -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1231 -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1189 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1235 -🔠DEBUG: resolve_variable: name='g', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1193 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1197 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1201 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1239 -🔠DEBUG: resolve_variable: name='j', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1205 -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1243 -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1247 -🔠DEBUG: resolve_variable: name='f', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1189 -🔠DEBUG: resolve_variable: name='g', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1193 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1197 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1251 -🔠DEBUG: resolve_variable: name='i', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1201 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1205 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1255 -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1259 -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1189 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1193 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1263 -🔠DEBUG: resolve_variable: name='h', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1197 -🔠DEBUG: resolve_variable: name='i', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1201 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1205 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1267 -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1271 -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔠DEBUG: resolve_variable: name='f', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1189 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1275 -🔠DEBUG: resolve_variable: name='g', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1193 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1197 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1201 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1279 -🔠DEBUG: resolve_variable: name='j', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1205 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1169 -🔠DEBUG: resolve_variable: name='b', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1173 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1283 -🔠DEBUG: resolve_variable: name='c', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1177 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1181 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1185 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1287 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["result5", "h", "me", "i", "result2", "c", "g", "e", "f", "d", "j", "result4", "result3", "a", "b", "result1"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1287 -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 295.162 | 885.5 | 384.70x - VM | 0.767 | 2.3 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 245.216 | 735.6 | 373.98x - VM | 0.656 | 2.0 | 1.00x - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 88.599 | 265.8 | 279.30x - VM | 0.317 | 1.0 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: 209.66 ms - VM: 0.58 ms (361.4x faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -test result: ok. 156 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.93s - - Running unittests src/main.rs (target/debug/deps/nyash-272ca05a1be10a69) - -running 145 tests -test box_arithmetic::tests::test_compare_box ... ok -test bid::types::tests::test_handle_packing ... ok -test bid::types::tests::test_type_tags ... ok -test bid::metadata::tests::test_host_vtable ... ok -test box_trait::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_multiply_box ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_subtract_box ... ok -test box_arithmetic::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_modulo_box ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test box_trait::tests::test_integer_box_creation ... ok -test ast::tests::test_binary_operation ... ok -test ast::tests::test_binary_operator ... ok -test ast::tests::test_ast_node_creation ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test box_factory::tests::test_registry_creation ... ok -test ast::tests::test_method_call ... ok -test box_arithmetic::tests::test_divide_box ... ok -test box_trait::tests::test_string_box_creation ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test box_trait::tests::test_box_ids_unique ... okProgram - -🔠DEBUG: Executing program with 1test box_trait::tests::test_box_equality ... ok statements -🔠DEBUG: Executing statement -1 of test box_arithmetic::tests::test_modulo_by_zero ... ok1: -BoxDeclaration -test box_trait::tests::test_add_box_strings ... ok -test box_arithmetic::tests::test_divide_by_zero ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -test box_trait::tests::test_void_box ... ok -Instance: StringBox -Instance: MyBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test bid::plugin_api::tests::test_plugin_handle ... okProgram - -🔠DEBUG: Executing program with 1test bid::types::tests::test_arg_type_mapping ... ok statements - -🔠DEBUG: Executing statement 1test boxes::null_box::tests::test_get_or_default ... ok of 1 -: Assignmenttest box_trait::tests::test_bool_box_creation ... ok - -🔠execute_statement called with node type: "test boxes::null_box::tests::test_null_check ... okAssignment" - -test backend::vm::tests::test_binary_operations ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test boxes::null_box::tests::test_null_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test backend::vm_phi::tests::test_phi_selection ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest boxes::null_box::tests::test_null_equality ... ok - -🔠DEBUG: Starting interpreter execution... -test cli::tests::test_default_config ... ok🔠DEBUG: execute_node called with node type: Program - -test ast::tests::test_complex_ast ... ok🔠DEBUG: Executing program with 4 - statements -test bid::bridge::tests::test_integer_box_bid_conversion ... ok🔠DEBUG: Executing statement 1 - of 4test bid::bridge::tests::test_box_registry ... ok: BoxDeclaration - -test bid::bridge::tests::test_future_box_bid_conversion ... ok🔠execute_statement called with node type: " -BoxDeclaration"test bid::bridge::tests::test_string_box_bid_conversion ... ok - -test cli::tests::test_parse_debug_fuel ... 🔠DEBUG: Starting interpreter execution... -ok -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_error_handling ... ok - -🔠DEBUG: Executing program with 2test environment::tests::test_global_environment ... ok statements - -🔠DEBUG: Executing statement 1test environment::tests::test_nested_scopes ... ok of 2 -: Assignmenttest environment::tests::test_python_compat ... ok - -🔠execute_statement called with node type: "test environment::tests::test_variable_setting ... okAssignment" - -test environment::tests::test_scope_info ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test environment::tests::test_variable_shadowing ... ok🔠execute_new called for class: BoolBox -, with 1test finalization::tests::test_finalization_tracking ... ok arguments - -🔠Trying unified registry for class: BoolBoxtest instance_v2::tests::test_field_operations ... ok - -🔠execute_statement called with node type: "test instance_v2::tests::test_from_any_box_creation ... okBoxDeclaration" - -test instance_v2::tests::test_from_declaration_creation ... ok🭠Unified registry created: IntegerBox - -test instance_v2::tests::test_unified_approach ... ok🔠DEBUG: Statement 1 - completed -test config::nyash_toml_v2::tests::test_parse_v2_config ... ok🔠DEBUG: Executing statement 2 - of 4test mir::basic_block::tests::test_basic_block_creation ... ok: Assignment - -test bid::plugins::filebox::tests::test_filebox_plugin ... ok🔠execute_statement called with node type: " -Assignment"test mir::basic_block::tests::test_basic_block_id_generator ... ok - -🔠About to call execute_assignment... -test mir::basic_block::tests::test_branch_successors ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: TestBoxtest mir::basic_block::tests::test_instruction_addition ... ok, with 0 - arguments -test mir::basic_block::tests::test_phi_instruction_ordering ... ok🔠Trying unified registry for class: TestBox - -test mir::basic_block::tests::test_terminator_addition ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::basic_block::tests::test_value_tracking ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::builder::tests::test_binary_op_building ... ok - -🔠DEBUG: Starting interpreter execution... -test mir::builder::tests::test_if_statement_building ... ok🔠DEBUG: execute_node called with node type: Program - -test mir::builder::tests::test_literal_building ... ok🔠DEBUG: Executing program with 2 - statements -test mir::effect::tests::test_effect_combination ... ok🔠DEBUG: Executing statement 1 - of 2test mir::effect::tests::test_effect_display ... ok: Assignment - -test mir::effect::tests::test_effect_mask_creation ... ok🔠execute_statement called with node type: " -Assignment"test mir::effect::tests::test_effect_names ... ok - -🔠About to call execute_assignment... -test mir::effect::tests::test_effect_union ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest mir::effect::tests::test_parallel_safety ... ok, with 1 - arguments -test mir::function::tests::test_function_creation ... ok🔠Trying unified registry for class: IntegerBox - -test mir::function::tests::test_function_stats ... ok🌠statics namespace created in GlobalBox successfully - -🔥 Static Box 'Maintest mir::function::tests::test_module_creation ... ok' definition registered in statics namespace - -🔠DEBUG: Statement 1test mir::function::tests::test_value_id_generation ... ok completed - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_barrier_instructions ... ok - -🌠statics namespace already exists - skipping creation -test mir::instruction::tests::test_binop_instruction ... ok🔠execute_assignment: value expression evaluated successfully - -🭠Unified registry created: TestBoxtest mir::instruction::tests::test_call_instruction ... ok - -🔥 Static box 'Maintest mir::instruction::tests::test_const_instruction ... ok' instance registered in statics namespace - -🔠DEBUG: Statement 1test mir::instruction::tests::test_extern_call_instruction ... ok completed - -🔠DEBUG: Executing statement 2test mir::instruction::tests::test_ref_get_instruction ... ok of 2 -: Iftest mir::instruction::tests::test_ref_new_instruction ... ok - -🔠execute_statement called with node type: "test mir::instruction::tests::test_ref_set_instruction ... okIf" - -test mir::instruction::tests::test_weak_load_instruction ... ok🔠execute_statement called with node type: " -MethodCall"test mir::instruction::tests::test_weak_new_instruction ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction_v2::tests::test_effect_categories ... ok🭠Unified registry created: IntegerBox - -test mir::instruction_v2::tests::test_instruction_count ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] - -test mir::instruction_v2::tests::test_ownership_operations ... ok🔠DEBUG: Checking GlobalBox for 'x -'... -test mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok🔠DEBUG: Found 'x -' in GlobalBox -test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok🔠execute_statement called with node type: " -Assignment"test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok - -🔠About to call execute_assignment... -test mir::printer::tests::test_empty_module_printing ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: StringBoxtest mir::printer::tests::test_function_printing ... ok, with 1 - arguments -test mir::printer::tests::test_verbose_printing ... ok🔠Trying unified registry for class: StringBox - -test mir::tests::test_basic_mir_compilation ... ok🭠Unified registry created: IntegerBox - -test mir::tests::test_loop_compilation ... ok🔠DEBUG: Statement 2 - completed -test mir::tests::test_mir_dump ... ok🔠DEBUG: Executing statement 3 - of 4test mir::tests::test_throw_compilation ... ok: Assignment - -test mir::tests::test_try_catch_compilation ... ok🔠execute_statement called with node type: " -Assignment"test mir::value_id::tests::test_local_id_creation ... ok - -🔠About to call execute_assignment... -test mir::value_id::tests::test_local_id_generator ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: StringBoxtest mir::value_id::tests::test_value_id_creation ... ok, with 1 - arguments -test mir::value_id::tests::test_value_id_generator ... ok🔠Trying unified registry for class: StringBox - -test mir::value_id::tests::test_value_id_ordering ... ok🔠execute_assignment: value expression evaluated successfully - -🭠Unified registry created: StringBoxtest mir::verification::tests::test_undefined_value_detection ... ok - -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::verification::tests::test_valid_function_verification ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest runner::tests::test_runner_creation ... ok'... - -🔠DEBUG: Found 'staticstest runtime::box_registry::tests::test_builtin_registration ... ok' in GlobalBox - -🔠execute_assignment: value expression evaluated successfully -test runtime::box_registry::tests::test_plugin_override ... ok🭠Unified registry created: StringBox - -test runtime::plugin_config::tests::test_parse_empty_config ... ok🔠execute_assignment: value expression evaluated successfully - -test runtime::plugin_config::tests::test_parse_simple_config ... 🔠DEBUG: Statement 1ok - completed -test runtime::plugin_config::tests::test_parse_with_comments ... ok🔠DEBUG: Executing statement 2 -test runtime::tests::tests::test_box_registry_builtin ... of 2ok -: Printtest runtime::tests::tests::test_box_registry_plugin_override ... ok - -test runtime::tests::tests::test_multiple_plugin_types ... 🔠execute_statement called with node type: "ok -Print"test runtime::tests::tests::test_plugin_config_parsing ... ok - -test runtime::tests::tests::test_transparent_box_switching ... 🔧 execute_binary_op: op=Addok -, left=IntegerBoxtest tests::test_main_functionality ... ok, right=IntegerBox -test tokenizer::tests::test_comments ... -ok -🔠try_add_operation: left=IntegerBoxtest tokenizer::tests::test_complex_code ... ok, right=IntegerBox -test tokenizer::tests::test_error_handling ... -ok -🔠After unwrap: left=IntegerBoxtest tokenizer::tests::test_identifier ... ok, right=IntegerBox -test tokenizer::tests::test_line_numbers ... -ok -🔠IntegerBox + IntegerBox detected -test tokenizer::tests::test_number_literal ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: resolve_variable: name='obj', local_vars=[]test tokenizer::tests::test_operators ... ok - -🔠DEBUG: Checking GlobalBox for 'objtest tokenizer::tests::test_simple_tokens ... ok'... - -test tokenizer::tests::test_string_literal ... 🔠DEBUG: Found 'objok -' in GlobalBox -test value::tests::test_basic_creation ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] - -test value::tests::test_cross_type_equality ... ok🔠DEBUG: Checking GlobalBox for 'x -'... -test value::tests::test_object_creation ... ok🔠DEBUG: Found 'x -' in GlobalBox -test value::tests::test_type_conversion ... 🔠DEBUG: Statement 2ok completed - -🔠DEBUG: Statement 342 - completed -test value::tests::test_type_names ... ok🔠DEBUG: Executing statement 4 - of 4test value::tests::test_weak_reference_basic ... ok: Assignment - -test value::tests::test_weak_reference_drop ... ok🔠execute_statement called with node type: " -Assignment"test value::tests::test_weak_reference_equality ... ok - -🔠About to call execute_assignment... -test value::tests::test_weak_reference_string_representation ... ok🔠execute_assignment called, evaluating value expression... - -🔠stdlib not initialized for method call -✅ FIELD ACCESS: Returning shared reference id=136 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 2 completed -🔠DEBUG: Statement 1 completed -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Interpreter execution completed -test interpreter::core::tests::test_simple_execution ... ok🔠execute_statement called with node type: " -Local" -🔠DEBUG: resolve_variable: name='y', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'y'... -🔠DEBUG: Found 'y' in GlobalBox -🔠execute_statement called with node type: "test interpreter::core::tests::test_if_statement ... okAssignment" - -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🭠Unified registry created: IntegerBoxtest interpreter::core::tests::test_arithmetic ... ok - -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=135 -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -✅ FIELD ACCESS: Returning shared reference id=150 -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 4 completed -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=171 -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=["b", "result", "c", "me", "a"]test interpreter::core::tests::test_box_instance_creation ... ok -🔠DEBUG: Found ' -b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=176 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=185 -🔠DEBUG: resolve_variable: name='c', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=182 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=187 -🔠DEBUG: resolve_variable: name='a', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=171 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=189 -🔠DEBUG: resolve_variable: name='b', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=176 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=191 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["b", "result", "c", "me", "a"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=191 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=200 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=209 -🔠DEBUG: resolve_variable: name='b', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=213 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=219 -🔠DEBUG: resolve_variable: name='c', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=217 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=221 -🔠DEBUG: resolve_variable: name='a', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=209 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=223 -🔠DEBUG: resolve_variable: name='b', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=213 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=225 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["c", "b", "a", "me", "result"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=225 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=234 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=243 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=247 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=253 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=251 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=255 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=243 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=257 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=247 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=259 -88 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result', local_vars=["me", "result", "a", "b", "c"] -🔠DEBUG: Found 'result' in local_vars -✅ RESOLVE_VARIABLE shared reference: result id=259 -🔠DEBUG: Interpreter execution completed -88 - ðŸŽï¸ VM: First run completed -88 -88 -🚀 Running benchmark: bench_medium -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=271 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=273 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=284 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=279 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=293 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=284 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=300 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=295 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=309 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=300 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=316 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=311 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=325 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=316 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=332 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=327 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=341 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=332 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=348 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=343 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=357 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=348 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=364 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=359 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=373 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=364 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=380 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=375 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=389 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=380 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=396 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=391 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=405 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=396 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=412 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=407 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=421 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=412 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=428 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=423 -🔠DEBUG: resolve_variable: name='temp', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=437 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=439 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "me", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=439 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=448 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=450 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=461 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=456 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=470 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=461 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=477 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=472 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=486 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=477 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=493 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=488 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=502 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=493 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=509 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=504 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=518 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=509 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=525 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=520 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=534 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=525 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=541 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=536 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=550 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=541 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=557 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=552 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=566 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=557 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=573 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=568 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=582 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=573 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=589 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=584 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=598 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=589 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=605 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=600 -🔠DEBUG: resolve_variable: name='temp', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=614 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=616 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "me", "temp", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=616 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=625 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=627 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=638 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=633 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=647 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=638 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=654 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=649 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=663 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=654 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=670 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=665 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=679 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=670 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=686 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=681 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=695 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=686 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=702 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=697 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=711 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=702 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=718 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=713 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=727 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=718 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=734 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=729 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=743 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=734 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=750 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=745 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=759 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=750 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=766 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=761 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=775 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=766 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=782 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=777 -🔠DEBUG: resolve_variable: name='temp', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'temp' in local_vars -✅ RESOLVE_VARIABLE shared reference: temp id=791 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=793 -140 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "i", "temp", "sum"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=793 -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=805 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔠DEBUG: resolve_variable: name='f', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=846 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=850 -🔠DEBUG: resolve_variable: name='h', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=854 -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=858 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=862 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=868 -🔠DEBUG: resolve_variable: name='result2', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=873 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=877 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=881 -🔠DEBUG: resolve_variable: name='result1', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=868 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=873 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=884 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=888 -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=846 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=892 -🔠DEBUG: resolve_variable: name='g', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=850 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=854 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=858 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=896 -🔠DEBUG: resolve_variable: name='j', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=862 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=900 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=904 -🔠DEBUG: resolve_variable: name='f', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=846 -🔠DEBUG: resolve_variable: name='g', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=850 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=854 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=908 -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=858 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=862 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=912 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=916 -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=846 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=850 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=920 -🔠DEBUG: resolve_variable: name='h', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=854 -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=858 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=862 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=924 -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=928 -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔠DEBUG: resolve_variable: name='f', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=846 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=932 -🔠DEBUG: resolve_variable: name='g', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=850 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=854 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=858 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=936 -🔠DEBUG: resolve_variable: name='j', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=862 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=826 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=830 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=940 -🔠DEBUG: resolve_variable: name='c', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=834 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=838 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=842 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=944 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["me", "result3", "c", "a", "i", "result4", "b", "j", "result2", "f", "d", "g", "result1", "result5", "h", "e"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=944 -🔠DEBUG: Interpreter execution completed - 📊 Interpreter: First run completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=953 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔠DEBUG: resolve_variable: name='f', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=994 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=998 -🔠DEBUG: resolve_variable: name='h', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1002 -🔠DEBUG: resolve_variable: name='i', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1006 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1010 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1016 -🔠DEBUG: resolve_variable: name='result2', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1021 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1025 -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1029 -🔠DEBUG: resolve_variable: name='result1', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1016 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1021 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1032 -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1036 -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=994 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1040 -🔠DEBUG: resolve_variable: name='g', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=998 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1002 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1006 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1044 -🔠DEBUG: resolve_variable: name='j', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1010 -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1048 -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1052 -🔠DEBUG: resolve_variable: name='f', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=994 -🔠DEBUG: resolve_variable: name='g', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=998 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1002 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1056 -🔠DEBUG: resolve_variable: name='i', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1006 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1010 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1060 -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1064 -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=994 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=998 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1068 -🔠DEBUG: resolve_variable: name='h', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1002 -🔠DEBUG: resolve_variable: name='i', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1006 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1010 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1072 -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1076 -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔠DEBUG: resolve_variable: name='f', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=994 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1080 -🔠DEBUG: resolve_variable: name='g', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=998 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1002 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1006 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1084 -🔠DEBUG: resolve_variable: name='j', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1010 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=974 -🔠DEBUG: resolve_variable: name='b', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=978 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1088 -🔠DEBUG: resolve_variable: name='c', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=982 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=986 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=990 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1092 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["result1", "f", "me", "result2", "a", "g", "result3", "b", "h", "d", "j", "result5", "c", "e", "i", "result4"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1092 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=1101 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔠DEBUG: resolve_variable: name='f', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1142 -🔧 execute_binary_op: op=Divide, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='g', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1146 -🔠DEBUG: resolve_variable: name='h', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1150 -🔠DEBUG: resolve_variable: name='i', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1154 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1158 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1164 -🔠DEBUG: resolve_variable: name='result2', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1169 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1173 -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1177 -🔠DEBUG: resolve_variable: name='result1', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1164 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='result2', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1169 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1180 -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1184 -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='f', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1142 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1188 -🔠DEBUG: resolve_variable: name='g', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1146 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1150 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='i', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1154 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1192 -🔠DEBUG: resolve_variable: name='j', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1158 -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1196 -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1200 -🔠DEBUG: resolve_variable: name='f', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1142 -🔠DEBUG: resolve_variable: name='g', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1146 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='h', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1150 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1204 -🔠DEBUG: resolve_variable: name='i', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1154 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='j', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1158 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1208 -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1212 -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='f', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1142 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='g', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1146 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1216 -🔠DEBUG: resolve_variable: name='h', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1150 -🔠DEBUG: resolve_variable: name='i', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1154 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='j', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1158 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result5', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1220 -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result1', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result1' in local_vars -✅ RESOLVE_VARIABLE shared reference: result1 id=1224 -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔠DEBUG: resolve_variable: name='f', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'f' in local_vars -✅ RESOLVE_VARIABLE shared reference: f id=1142 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result2' in local_vars -✅ RESOLVE_VARIABLE shared reference: result2 id=1228 -🔠DEBUG: resolve_variable: name='g', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'g' in local_vars -✅ RESOLVE_VARIABLE shared reference: g id=1146 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='h', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'h' in local_vars -✅ RESOLVE_VARIABLE shared reference: h id=1150 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='i', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=1154 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result3', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result3' in local_vars -✅ RESOLVE_VARIABLE shared reference: result3 id=1232 -🔠DEBUG: resolve_variable: name='j', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'j' in local_vars -✅ RESOLVE_VARIABLE shared reference: j id=1158 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='a', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=1122 -🔠DEBUG: resolve_variable: name='b', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=1126 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result4', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result4' in local_vars -✅ RESOLVE_VARIABLE shared reference: result4 id=1236 -🔠DEBUG: resolve_variable: name='c', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'c' in local_vars -✅ RESOLVE_VARIABLE shared reference: c id=1130 -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: resolve_variable: name='d', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'd' in local_vars -✅ RESOLVE_VARIABLE shared reference: d id=1134 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='e', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'e' in local_vars -✅ RESOLVE_VARIABLE shared reference: e id=1138 -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Print" -🔠DEBUG: resolve_variable: name='result5', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1240 -6301391 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='result5', local_vars=["i", "result3", "result1", "b", "me", "j", "h", "g", "result5", "f", "c", "d", "result2", "result4", "e", "a"] -🔠DEBUG: Found 'result5' in local_vars -✅ RESOLVE_VARIABLE shared reference: result5 id=1240 -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 84.250 | 252.7 | 261.17x - VM | 0.323 | 1.0 | 1.00x - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 271.596 | 814.8 | 403.33x - VM | 0.673 | 2.0 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - Interpreter | 234.877 | 704.6 | 380.04x - VM | 0.618 | 1.9 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: 196.91 ms - VM: 0.54 ms (366.0x faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -test result: ok. 145 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.82s - - Running tests/array_state_sharing_test.rs (target/debug/deps/array_state_sharing_test-892ed54276bf1011) - -running 3 tests -test array_state_sharing_tests::test_share_box_vs_clone_box_semantics ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=19 -✅ FIELD ACCESS: Returning shared reference id=17 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: ArrayBox, with 0 arguments -🔠Trying unified registry for class: ArrayBox -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: ArrayBox, with 0 arguments -🔠Trying unified registry for class: ArrayBox -🭠Unified registry created: ArrayBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: ArrayBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='arr', local_vars=["arr", "me"] -🔠DEBUG: Found 'arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=29 -🔠DEBUG: resolve_variable: name='arr', local_vars=["me", "arr"] -🔠DEBUG: Found 'arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=31 -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🭠Unified registry created: StringBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🭠Unified registry created: StringBox -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='arr', local_vars=["me", "arr"] -🔠DEBUG: Found 'arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=31 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='arr', local_vars=["arr", "me"] -🔠DEBUG: Found 'arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=29 -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "arr"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=17 -🭠Unified registry created: StringBox -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='arr', local_vars=["arr", "me"] -🔠DEBUG: Found 'arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=29 -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "arr"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=17 -✅ FIELD ACCESS: Returning shared reference id=41 -🭠Unified registry created: StringBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='arr', local_vars=["arr", "me"]test array_state_sharing_tests::test_arraybox_state_sharing_bug_fix ... ok -🔠DEBUG: Found ' -arr' in local_vars -✅ RESOLVE_VARIABLE shared reference: arr id=29 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='me', local_vars=["arr", "me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=19 -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='me', local_vars=["arr", "me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=19 -✅ FIELD ACCESS: Returning shared reference id=52 -🔠DEBUG: Interpreter execution completed -test array_state_sharing_tests::test_multiple_operations_state_preservation ... ok - -test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.10s - - Running tests/integration_tests.rs (target/debug/deps/integration_tests-4636610fbd1b2065) - -running 16 tests - -thread 'integration_tests::test_function_declaration_and_call' panicked at tests/integration_tests.rs:143:57: -called `Result::unwrap()` on an `Err` value: "Parse error: Invalid statement at line 2" -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace - -thread 'integration_tests::test_loop_with_break' panicked at tests/integration_tests.rs:129:58: -called `Result::unwrap()` on an `Err` value: "Parse error: Unexpected token LBRACE, expected LPAREN at line 3" - -thread 'integration_tests::test_global_variables' panicked at tests/integration_tests.rs:276:57: -called `Result::unwrap()` on an `Err` value: "Parse error: Invalid statement at line 5" - -thread 'integration_tests::test_method_chaining_concept' panicked at tests/integration_tests.rs:227:57: -called `Result::unwrap()` on an `Err` value: "Parse error: Unexpected token INIT, expected identifier at line 21" -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 3 statements -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 6 statements -🔠DEBUG: Executing statement 1test integration_tests::test_global_variables ... FAILED of 6 -test integration_tests::test_function_declaration_and_call ... : AssignmentFAILED - -test integration_tests::test_method_chaining_concept ... FAILED🔠execute_statement called with node type: " -Assignment"test integration_tests::test_loop_with_break ... FAILED -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 5 statements -🔠DEBUG: Executing statement 1 of 5: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 9 statements -🔠DEBUG: Executing statement 1 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: TestBox, with 0 arguments -🔠Trying unified registry for class: TestBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 4 statements -🔠DEBUG: Executing statement 1 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 3 statements -🔠DEBUG: Executing statement 1 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 4 statements -🔠DEBUG: Executing statement 1 of 4: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🭠Unified registry created: TestBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 2 statements -🔠DEBUG: Executing statement 1 of 2: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: BoolBox, with 1 arguments -🔠Trying unified registry for class: BoolBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 7 statements -🔠DEBUG: Executing statement 1 of 7: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 5 statements -🔠DEBUG: Executing statement 1 of 5: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Executing statement 1 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 4 statements -🔠DEBUG: Executing statement 1 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: BoolBox, with 1 arguments -🔠Trying unified registry for class: BoolBox -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Calculator, with 0 arguments -🔠Trying unified registry for class: Calculator -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Data, with 0 arguments -🔠Trying unified registry for class: Data -🭠Unified registry created: IntegerBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 6 statements -🔠DEBUG: Executing statement 1 of 6: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Point, with 0 arguments -🔠Trying unified registry for class: Point -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 6: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Container, with 0 arguments -🔠Trying unified registry for class: Container -🭠Unified registry created: BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: StringBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 2: If -🔠execute_statement called with node type: "If" -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: BoolBox, with 1 arguments -🔠Trying unified registry for class: BoolBox -🔠DEBUG: resolve_variable: name='condition', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'condition'... -🔠DEBUG: Found 'condition' in GlobalBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: Calculator -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: Data -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 5: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🭠Unified registry created: Point -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='calc', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'calc'... -🔠DEBUG: Found 'calc' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Data, with 0 arguments -🔠Trying unified registry for class: Data -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: StringBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: Container -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: StringBox -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠DEBUG: resolve_variable: name='container', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'container'... -🔠DEBUG: Found 'container' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🭠Unified registry created: BoolBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 3: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Wrapper, with 0 arguments -🔠Trying unified registry for class: Wrapper -✅ FIELD ACCESS: Returning shared reference id=77 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='greeting', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'greeting'... -🔠DEBUG: Found 'greeting' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: StringBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='name', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'name'... -🔠DEBUG: Found 'name' in GlobalBox -🔧 execute_binary_op: op=Add, left=StringBox, right=StringBox -🔠try_add_operation: left=StringBox, right=StringBox -🔠After unwrap: left=StringBox, right=StringBox -🔠Checking StringBox downcast... -🔠StringBox downcast SUCCESS! -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🭠Unified registry created: IntegerBox -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=And, left=BoolBox, right=BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='message', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'message'... -🔠DEBUG: Found 'message' in GlobalBox -🔠execute_statement called with node type: "test integration_tests::test_string_operations ... okReturn" - -🔠DEBUG: Statement 2 completed -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: Data -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=20 -✅ FIELD ACCESS: Returning shared reference id=77 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 5 completed -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Or, left=BoolBox, right=BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='direct_access', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'direct_access'... -🔠DEBUG: Found 'direct_access' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Statement 4 completed -🭠Unified registry created: IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: resolve_variable: name='v', local_vars=["me", "v"] -🔠DEBUG: Found 'v' in local_vars -✅ RESOLVE_VARIABLE shared reference: v id=122 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Interpreter execution completed -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='and_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'and_result'... -🔠DEBUG: Found 'and_result' in GlobalBox -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='result', local_vars=[]test integration_tests::test_if_else_statements ... ok - -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -test integration_tests::test_basic_arithmetic ... ok🭠Unified registry created: Wrapper - -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "v"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=66 -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 4 statements -🔠DEBUG: Executing statement 1 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: BoolBox, with 1 arguments -🔠Trying unified registry for class: BoolBox -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 7: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 5: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🭠Unified registry created: BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='d1', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd1'... -🔠DEBUG: Found 'd1' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: BoolBox, with 1 arguments -🔠Trying unified registry for class: BoolBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🭠Unified registry created: BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='p', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'p'... -🔠DEBUG: Found 'p' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 5 statements -🔠DEBUG: Executing statement 1 of 5: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='calc', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'calc'... -🔠DEBUG: Found 'calc' in GlobalBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: TestBox, with 0 arguments -🔠Trying unified registry for class: TestBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Equal, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: TestBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='c', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'c'... -🔠DEBUG: Found 'c' in GlobalBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='p', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'p'... -🔠DEBUG: Found 'p' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🭠Unified registry created: StringBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=81 -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=76 -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=And, left=BoolBox, right=BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=NotEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: resolve_variable: name='v', local_vars=["v", "me"] -🔠DEBUG: Found 'v' in local_vars -✅ RESOLVE_VARIABLE shared reference: v id=171 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -✅ FIELD ACCESS: Returning shared reference id=129 -🔠DEBUG: Statement 6 completed -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "amount"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=66 -🔠DEBUG: Executing statement 3 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=81 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 4 completed -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -✅ FIELD ACCESS: Returning shared reference id=122 -✅ FIELD ACCESS: Returning shared reference id=142 -🔠DEBUG: resolve_variable: name='less', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'less'... -🔠DEBUG: Found 'less' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Or, left=BoolBox, right=BoolBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[]test integration_tests::test_complex_expression_evaluation ... ok - -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 6: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='amount', local_vars=["me", "amount"] -🔠DEBUG: Found 'amount' in local_vars -✅ RESOLVE_VARIABLE shared reference: amount id=177 -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "amount"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=66 -🔠DEBUG: resolve_variable: name='me', local_vars=["v", "me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=72 -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='w', local_vars=[]test integration_tests::test_box_instance_creation ... ok - -🔠DEBUG: Checking GlobalBox for 'w'... -🔠DEBUG: Found 'w' in GlobalBox -🔠DEBUG: resolve_variable: name='or_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'or_result'... -🔠DEBUG: Found 'or_result' in GlobalBox -🔠DEBUG: Statement 7 -thread 'integration_tests::test_boolean_logic' panicked at tests/integration_tests.rs:81:9: -assertion `left == right` failed - left: "true" - right: "false" - completed -test integration_tests::test_boolean_logic ... FAILED🔠DEBUG: Executing statement 8 - of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 7: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='d2', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd2'... -🔠DEBUG: Found 'd2' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=LessEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "amount"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=66 -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -✅ FIELD ACCESS: Returning shared reference id=202 -🔠DEBUG: Statement 8 completed -🔠DEBUG: Executing statement 9 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🭠Unified registry created: StringBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: StringBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 6 statements -🔠DEBUG: Executing statement 1 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='calc', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'calc'... -🔠DEBUG: Found 'calc' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🭠Unified registry created: StringBox -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='v', local_vars=["me", "v"] -🔠DEBUG: Found 'v' in local_vars -✅ RESOLVE_VARIABLE shared reference: v id=216 -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "v"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=113 -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=GreaterEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: resolve_variable: name='d1', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd1'... -🔠DEBUG: Found 'd1' in GlobalBox -🔠DEBUG: resolve_variable: name='value', local_vars=["value", "me"] -🔠DEBUG: Found 'value' in local_vars -✅ RESOLVE_VARIABLE shared reference: value id=218 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=66 -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='me', local_vars=["value", "me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=142 -✅ FIELD ACCESS: Returning shared reference id=202 -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: Statement 9 completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='container', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'container'... -🔠DEBUG: Found 'container' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=194 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='add_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'add_result'... -🔠DEBUG: Found 'add_result' in GlobalBox -🔠execute_statement called with node type: "Return" -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=81 -🔠execute_statement called with node type: "Return" -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 9 statements -🔠DEBUG: Executing statement 1 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -✅ FIELD ACCESS: Returning shared reference id=142 -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=72 -✅ FIELD ACCESS: Returning shared reference id=171 -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 5 completed -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=142 -✅ FIELD ACCESS: Returning shared reference id=218 -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🭠Unified registry created: IntegerBoxtest integration_tests::test_this_binding_in_methods ... ok - -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='d2', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd2'... -🔠DEBUG: Found 'd2' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 6 completed -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 5: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=113 -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -✅ FIELD ACCESS: Returning shared reference id=216 -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Equal, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=164 -✅ FIELD ACCESS: Returning shared reference id=194 -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 7 completed -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[]test integration_tests::test_nested_method_calls ... ok - -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=NotEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 6 completed -🔠DEBUG: Statement 5 completed -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='result1', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result1'... -🔠DEBUG: Found 'result1' in GlobalBox -🔠DEBUG: resolve_variable: name='method_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'method_result'... -🔠DEBUG: Found 'method_result' in GlobalBox -🔠DEBUG: Starting interpreter execution... -test integration_tests::test_the_debug_this_problem ... ok🔠DEBUG: execute_node called with node type: Program - -🔠DEBUG: Executing program with 7 statements -🔠DEBUG: Executing statement 1 of 7: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='greater', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'greater'... -🔠DEBUG: Found 'greater' in GlobalBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Data, with 0 arguments -🔠Trying unified registry for class: Data -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 6 statements -🔠DEBUG: Executing statement 1 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: Data -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: Data, with 0 arguments -🔠Trying unified registry for class: Data -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: Data -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 7 completed -🔠DEBUG: Executing statement 8 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 7: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='d1', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd1'... -🔠DEBUG: Found 'd1' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=LessEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 8 completed -🔠DEBUG: Executing statement 9 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🭠Unified registry created: StringBox -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=GreaterEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='v', local_vars=["v", "me"] -🔠DEBUG: Found 'v' in local_vars -✅ RESOLVE_VARIABLE shared reference: v id=318 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 9 completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='me', local_vars=["v", "me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=291 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='sub_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'sub_result'... -🔠DEBUG: Found 'sub_result' in GlobalBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 7: MethodCall -🔠execute_statement called with node type: "MethodCall" -🔠stdlib not initialized for method call -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 9 statements -🔠DEBUG: Executing statement 1 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='d2', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd2'... -🔠DEBUG: Found 'd2' in GlobalBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_new called for class: StringBox, with 1 arguments -🔠Trying unified registry for class: StringBox -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🭠Unified registry created: StringBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Equal, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='v', local_vars=["me", "v"] -🔠DEBUG: Found 'v' in local_vars -✅ RESOLVE_VARIABLE shared reference: v id=340 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='me', local_vars=["me", "v"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=303 -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=NotEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 6 completed -🔠DEBUG: resolve_variable: name='d1', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd1'... -🔠DEBUG: Found 'd1' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Return" -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='equal', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'equal'... -🔠DEBUG: Found 'equal' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=291 -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 6 statements -🔠DEBUG: Executing statement 1 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -✅ FIELD ACCESS: Returning shared reference id=318 -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 7: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='d2', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'd2'... -🔠DEBUG: Found 'd2' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_statement called with node type: "Return" -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=303 -✅ FIELD ACCESS: Returning shared reference id=340 -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 7 completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result2', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result2'... -🔠DEBUG: Found 'result2' in GlobalBox -🔠execute_assignment called, evaluating value expression... -test integration_tests::test_multiple_instances ... ok🔠DEBUG: resolve_variable: name='a', local_vars=[] - -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 7 completed -🔠DEBUG: Executing statement 8 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔧 execute_binary_op: op=Equal, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 6: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=LessEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 8 completed -🔠DEBUG: Executing statement 9 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=NotEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: Statement 6 completed -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=GreaterEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Interpreter execution completed -🔠DEBUG: Statement 9 completed -🔠DEBUG: resolve_variable: name='not_equal', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'not_equal'... -🔠DEBUG: Found 'not_equal' in GlobalBox -🔠DEBUG: Interpreter execution completed -test integration_tests::test_comparison_operators ... ok -🔠DEBUG: resolve_variable: name='mul_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'mul_result'... -🔠DEBUG: Found 'mul_result' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 9 statements -🔠DEBUG: Executing statement 1 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 1 completed -🔠DEBUG: Executing statement 2 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 2 completed -🔠DEBUG: Executing statement 3 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠IntegerBox + IntegerBox detected -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Subtract, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠DEBUG: Executing statement 5 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Multiply, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 5 completed -🔠DEBUG: Executing statement 6 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=Less, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 6 completed -🔠DEBUG: Executing statement 7 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=Greater, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 7 completed -🔠DEBUG: Executing statement 8 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔧 execute_binary_op: op=LessEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 8 completed -🔠DEBUG: Executing statement 9 of 9: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'a'... -🔠DEBUG: Found 'a' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'b'... -🔠DEBUG: Found 'b' in GlobalBox -🔧 execute_binary_op: op=GreaterEqual, left=IntegerBox, right=IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 9 completed -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='less_result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'less_result'... -🔠DEBUG: Found 'less_result' in GlobalBox - -thread 'integration_tests::test_all_numeric_operations' panicked at tests/integration_tests.rs:351:9: -assertion `left == right` failed - left: "false" - right: "true" -test integration_tests::test_all_numeric_operations ... FAILED - -failures: - -failures: - integration_tests::test_all_numeric_operations - integration_tests::test_boolean_logic - integration_tests::test_function_declaration_and_call - integration_tests::test_global_variables - integration_tests::test_loop_with_break - integration_tests::test_method_chaining_concept - -test result: FAILED. 10 passed; 6 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.77s - -error: test failed, to rerun pass `--test integration_tests` diff --git a/gemini_partial_response.txt b/gemini_partial_response.txt deleted file mode 100644 index e7e91146..00000000 --- a/gemini_partial_response.txt +++ /dev/null @@ -1,118 +0,0 @@ -Gemini先生ã®éƒ¨åˆ†çš„ãªå›žç­”(レート制é™ã§é€”中ã¾ã§ï¼‰ - -Nyashã®çµ±ä¸€Box設計ã«ã¤ã„ã¦ã€å°‚門的ãªè¦³ç‚¹ã‹ã‚‰åˆ†æžã¨ææ¡ˆã‚’ã•ã›ã¦ã„ãŸã ãã¾ã™ã€‚ - -## 設計ã®è©•価 - -### 美ã—ã„点 - -1. **「Everything is Boxã€ã®ä¸€è²«æ€§**: ã“ã®å“²å­¦ã¯ Smalltalk ã®ã€ŒEverything is an Objectã€ã«é€šã˜ã‚‹ç¾Žã—ã•ãŒã‚りã¾ã™ã€‚概念的ãªçµ±ä¸€æ„Ÿã¯è¨€èªžã®å­¦ç¿’曲線を緩やã‹ã«ã—ã€äºˆæ¸¬å¯èƒ½æ€§ã‚’高ã‚ã¾ã™ã€‚ - -2. **é€éŽçš„ãªç½®ãæ›ãˆæ©Ÿæ§‹**: プラグインã«ã‚ˆã‚‹ãƒ“ルトインBoxã®ç½®ãæ›ãˆã¯ã€Rubyã® `refinements` ã‚„ Python ã® `__import__` フックを彷彿ã¨ã•ã›ã¾ã™ã€‚ãƒ†ã‚¹ã‚¿ãƒ“ãƒªãƒ†ã‚£ã¨æ‹¡å¼µæ€§ã®è¦³ç‚¹ã‹ã‚‰å„ªã‚Œã¦ã„ã¾ã™ã€‚ - -3. **優先順ä½ã‚·ã‚¹ãƒ†ãƒ **: 明確ãªå„ªå…ˆé †ä½ï¼ˆãƒ“ルトイン > ユーザー定義 > プラグイン)ã¯ã€åå‰è§£æ±ºã®æ›–昧ã•を排除ã—ã€ãƒ‡ãƒãƒƒã‚°ã‚’容易ã«ã—ã¾ã™ã€‚ - -### 改善ã®ä½™åœ°ãŒã‚る点 - -1. **パフォーマンスã®ã‚ªãƒ¼ãƒãƒ¼ãƒ˜ãƒƒãƒ‰**: ã™ã¹ã¦ã‚’ `Box` ã§ãƒ©ãƒƒãƒ—ã™ã‚‹ã“ã¨ã¯ã€å°ã•ãªå€¤ï¼ˆæ•´æ•°ã€çœŸå½å€¤ãªã©ï¼‰ã«ã¨ã£ã¦å¤§ããªã‚ªãƒ¼ãƒãƒ¼ãƒ˜ãƒƒãƒ‰ã§ã™ã€‚Rust ã® `enum` を活用ã—ãŸå€¤ã®å†…éƒ¨è¡¨ç¾æœ€é©åŒ–を検討ã™ã¹ãã§ã™ã€‚ - -2. **åž‹ã®æ›–昧ã•**: `Option>` ã®ã‚ˆã†ãªå…¥ã‚Œå­æ§‹é€ ã¯ã€å®Ÿè¡Œæ™‚ã®åž‹ãƒã‚§ãƒƒã‚¯ã‚’複雑ã«ã—ã¾ã™ã€‚é™çš„型付ã‘ã®åˆ©ç‚¹ã‚’æ´»ã‹ã—ãれã¦ã„ã¾ã›ã‚“。 - -## æ”¹å–„ææ¡ˆ - -### 1. Enum ベースã®å€¤è¡¨ç¾ - -ç¾åœ¨ã® `Box` 一辺倒ã‹ã‚‰ã€ä»¥ä¸‹ã®ã‚ˆã†ãª enum ベースã®è¡¨ç¾ã¸ã®ç§»è¡Œã‚’ææ¡ˆã—ã¾ã™ï¼š - -```rust -pub enum NyashValue { - // å³å€¤ï¼ˆã‚¹ã‚¿ãƒƒã‚¯ä¸Šï¼‰ - Void, - Bool(bool), - Integer(i64), - Float(f64), - - // ヒープ上ã®ä¸å¤‰å€¤ - String(Arc), - - // 複雑ãªã‚ªãƒ–ジェクト - Object(Arc), -} -``` - -**メリット**: -- å°ã•ãªå€¤ã®ãƒ’ãƒ¼ãƒ—ã‚¢ãƒ­ã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã‚’å›žé¿ -- パターンマッãƒã«ã‚ˆã‚‹é«˜é€Ÿãªãƒ‡ã‚£ã‚¹ãƒ‘ッム-- 型安全性ã®å‘上 - -### 2. トレイトã®éšŽå±¤åŒ– - -基本メソッドã®çµ±ä¸€æ¡ˆã¯è‰¯ã„ã§ã™ãŒã€ã•らã«éšŽå±¤åŒ–ã™ã‚‹ã“ã¨ã§æŸ”軟性を高ã‚られã¾ã™ï¼š - -```rust -// 基本トレイト(ã™ã¹ã¦ã®BoxãŒå®Ÿè£…) -pub trait NyashBox: Send + Sync + Debug { - fn to_string(&self) -> String; - fn type_name(&self) -> &'static str; - fn equals(&self, other: &dyn NyashBox) -> bool; -} - -// 拡張トレイト(必è¦ã«å¿œã˜ã¦å®Ÿè£…) -pub trait Comparable: NyashBox { - fn compare(&self, other: &dyn NyashBox) -> Option; -} - -pub trait Arithmetic: NyashBox { - fn add(&self, other: &dyn NyashBox) -> Result, String>; - // ... -} -``` - -### 3. メタプログラミング機能 - -ユーザー定義Boxã®å®Œå…¨çµ±ä¸€ã®ãŸã‚ã«ã€ãƒ¡ã‚¿ãƒ—ログラミング機能をæä¾›ï¼š - -```rust -// Box定義時ã®ãƒ•ック -pub trait BoxMetadata { - fn on_method_missing(&self, name: &str, args: &[NyashValue]) -> Option; - fn on_field_access(&self, name: &str) -> Option; -} -``` - -### 4. パイプライン演算å­ã®å®Ÿè£… - -パイプライン演算å­ã¯ã€ãƒ¡ã‚½ãƒƒãƒ‰ãƒã‚§ãƒ¼ãƒ³ã®ä»£æ›¿ã¨ã—ã¦å„ªã‚Œã¦ã„ã¾ã™ï¼š - -```nyash -// ç¾åœ¨ -result = str.substring(0, 5).toUpperCase().trim() - -// パイプライン版 -result = str - |> substring(0, 5) - |> toUpperCase() - |> trim() -``` - -実装ã¯ã€å˜ç´”ãªæ§‹æ–‡ç³–ã¨ã—ã¦æ‰±ãˆã¾ã™ã€‚ - -## 他言語ã¨ã®æ¯”較 - -**Smalltalk**: 最も近ã„哲学をæŒã¡ã¾ã™ãŒã€Nyashã®æ–¹ãŒå®Ÿç”¨çš„(ファイルI/Oã€ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ç­‰ã‚’最åˆã‹ã‚‰è€ƒæ…®ï¼‰ - -**Ruby**: ã‚ªãƒ¼ãƒ—ãƒ³ã‚¯ãƒ©ã‚¹ã®æŸ”軟性ã¯ã‚りã¾ã›ã‚“ãŒã€ãã®åˆ†äºˆæ¸¬å¯èƒ½æ€§ãŒé«˜ã„ - -**Python**: `__getattr__` ã®ã‚ˆã†ãªå‹•çš„ãƒ•ãƒƒã‚¯ã‚ˆã‚Šã€æ˜Žç¤ºçš„ãªãƒ¡ã‚½ãƒƒãƒ‰å®šç¾©ã®æ–¹ãŒä¿å®ˆã—ã‚„ã™ã„ - -## ç·åˆçš„ãªæŽ¨å¥¨äº‹é … - -1. **段階的ãªç§»è¡Œ**: ç¾åœ¨ã®è¨­è¨ˆã‚’一度ã«å¤‰æ›´ã™ã‚‹ã®ã§ã¯ãªãã€ã¾ãš `NyashValue` enum ã‚’å°Žå…¥ã—ã€å¾ã€…ã«æœ€é©åŒ– - -2. **プロファイリング駆動**: パフォーマンスã®å•題ãŒå®Ÿéš›ã«ç™ºç”Ÿã—ã¦ã„る箇所ã‹ã‚‰æœ€é©åŒ– - -3. **ドキュメント駆動開発**: å„Boxã®æŒ¯ã‚‹èˆžã„ã‚’æ˜Žç¢ºã«æ–‡æ›¸åŒ–ã—ã€ãれã«åŸºã¥ã„ã¦å®Ÿè£… - -4. **テストã®å……実**: 特ã«ç•°ãªã‚‹ç¨®é¡žã®Boxé–“ã®ç›¸äº’作用をテスト - -ã“ã®è¨­è¨ˆã¯å分ã«ç¾Žã—ãã€å®Ÿç”¨çš„ã§ã™ã€‚éŽåº¦ã«è¤‡é›‘ã¨ã„ã†ã‚ˆã‚Šã€ã‚€ã—ã‚é©åˆ‡ãªæŠ½è±¡åŒ–レベルã ã¨è©•価ã—ã¾ã™ã€‚ \ No newline at end of file diff --git a/local_tests/test_return_42.nyash b/local_tests/test_return_42.nyash index 86f1b49d..40710365 100644 --- a/local_tests/test_return_42.nyash +++ b/local_tests/test_return_42.nyash @@ -1,2 +1,5 @@ -// Simple return test -return 42 +static box Main { + main() { + return 42 + } +} \ No newline at end of file diff --git a/local_tests/test_simple.nyash b/local_tests/test_simple.nyash index 818959c5..aecb68a8 100644 --- a/local_tests/test_simple.nyash +++ b/local_tests/test_simple.nyash @@ -1,9 +1,19 @@ -# Simple test without external calls -static box Main { - init { result } - - main() { - me.result = "Simple test" - return me.result - } -} \ No newline at end of file +// ç°¡å˜ãªNyashテストプログラム +print("🎉 Nyash is working!") +print("Everything is Box!") + +// åŸºæœ¬çš„ãªæ¼”ç®— +local a = 10 +local b = 20 +local result = a + b +print("10 + 20 = " + result.toString()) + +// StringBox +local greeting = "Hello, Nyash!" +print(greeting) + +// ArrayBox +local arr = new ArrayBox() +arr.push("First") +arr.push("Second") +print("Array length: " + arr.length().toString()) \ No newline at end of file diff --git a/mir_dump_fixed.txt b/mir_dump_fixed.txt deleted file mode 100644 index 1be21210..00000000 --- a/mir_dump_fixed.txt +++ /dev/null @@ -1,42 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash MIR Compiler - Processing file: local_tests/test_http_error_simple.nyash 🚀 -🚀 MIR Output for local_tests/test_http_error_simple.nyash: -; MIR Module: main - -define void @main() { -bb0: - 0: safepoint - 1: %0 = const void - 2: %1 = const void - 3: %2 = const void - 4: %3 = const void - 5: %4 = new HttpClientBox() - 6: call %4.birth() - 7: %5 = const "http://127.0.0.1:8099/nope" - 8: %6 = new StringBox(%5) - 9: call %6.birth(%5) - 10: %7 = const "http://127.0.0.1:8099/nope" - 11: %8 = new StringBox(%7) - 12: call %8.birth(%7) - 13: %9 = call %4.get(%8) - 14: %10 = call %9.isOk() - 15: br %10, label bb1, label bb2 - -bb1: - 0: %11 = const "unexpected_ok" - 1: %12 = new StringBox(%11) - 2: call %12.birth(%11) - 3: br label bb3 - -bb2: - 0: %13 = call %9.getError() - 1: %14 = call %13.toString() - 2: br label bb3 - -bb3: - 0: %15 = phi [%12, bb1], [%14, bb2] - 1: ret %15 -} - - diff --git a/mir_dump_http_error.txt b/mir_dump_http_error.txt deleted file mode 100644 index 36d94aa7..00000000 --- a/mir_dump_http_error.txt +++ /dev/null @@ -1,42 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash MIR Compiler - Processing file: local_tests/test_http_error_simple.nyash 🚀 -🚀 MIR Output for local_tests/test_http_error_simple.nyash: -; MIR Module: main - -define void @main() { -bb0: - 0: safepoint - 1: %0 = const void - 2: %1 = const void - 3: %2 = const void - 4: %3 = const void - 5: %4 = new HttpClientBox() - 6: call %4.birth() - 7: %5 = const "http://127.0.0.1:8099/nope" - 8: %6 = new StringBox(%5) - 9: call %6.birth(%5) - 10: %7 = const "http://127.0.0.1:8099/nope" - 11: %8 = new StringBox(%7) - 12: call %8.birth(%7) - 13: %9 = call %4.get(%8) - 14: %10 = call %9.isOk() - 15: br %10, label bb1, label bb2 - -bb1: - 0: %11 = const "unexpected_ok" - 1: %12 = new StringBox(%11) - 2: call %12.birth(%11) - 3: br label bb3 - -bb2: - 0: %13 = call %9.getError() - 1: %14 = call %13.toString() - 2: br label bb3 - -bb3: - 0: %15 = phi [%12, bb1], [%14, bb2] - 1: ret %14 -} - - diff --git a/mir_dump_http_error_check.txt b/mir_dump_http_error_check.txt deleted file mode 100644 index 36d94aa7..00000000 --- a/mir_dump_http_error_check.txt +++ /dev/null @@ -1,42 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash MIR Compiler - Processing file: local_tests/test_http_error_simple.nyash 🚀 -🚀 MIR Output for local_tests/test_http_error_simple.nyash: -; MIR Module: main - -define void @main() { -bb0: - 0: safepoint - 1: %0 = const void - 2: %1 = const void - 3: %2 = const void - 4: %3 = const void - 5: %4 = new HttpClientBox() - 6: call %4.birth() - 7: %5 = const "http://127.0.0.1:8099/nope" - 8: %6 = new StringBox(%5) - 9: call %6.birth(%5) - 10: %7 = const "http://127.0.0.1:8099/nope" - 11: %8 = new StringBox(%7) - 12: call %8.birth(%7) - 13: %9 = call %4.get(%8) - 14: %10 = call %9.isOk() - 15: br %10, label bb1, label bb2 - -bb1: - 0: %11 = const "unexpected_ok" - 1: %12 = new StringBox(%11) - 2: call %12.birth(%11) - 3: br label bb3 - -bb2: - 0: %13 = call %9.getError() - 1: %14 = call %13.toString() - 2: br label bb3 - -bb3: - 0: %15 = phi [%12, bb1], [%14, bb2] - 1: ret %14 -} - - diff --git a/nekocode_analysis_detailed.txt b/nekocode_analysis_detailed.txt deleted file mode 100644 index d808356f..00000000 --- a/nekocode_analysis_detailed.txt +++ /dev/null @@ -1,964532 +0,0 @@ -[ - { - "file_info": { - "name": "Box.cpp", - "path": "./development/archive/development_history/build/Box.cpp", - "language": "cpp", - "size_bytes": 3248, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.400213815Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "Box.h", - "path": "./development/archive/development_history/build/Box.h", - "language": "c", - "size_bytes": 1042, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.404992361Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_Box", - "name": "Box", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Future", - "name": "Future", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Box", - "name": "Box", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_output.cpp", - "path": "./development/archive/development_history/build/nyash_output.cpp", - "language": "cpp", - "size_bytes": 1009, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.410352367Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_box_test_runtime.c", - "path": "./development/archive/development_history/build/simple_box_test_runtime.c", - "language": "c", - "size_bytes": 1125, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.416387044Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_box_link", - "name": "box_link", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_box_print", - "name": "box_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_BoxList", - "name": "BoxList", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 8, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Box", - "name": "Box", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 8, - "column_start": 8, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BoxList", - "name": "BoxList", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Box", - "name": "Box", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "p2p_number_game.py", - "path": "./development/archive/development_history/examples/p2p_number_game.py", - "language": "python", - "size_bytes": 12169, - "total_lines": 369, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.461457788Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getName", - "name": "getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_startGame", - "name": "startGame", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 58, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_joinGame", - "name": "joinGame", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 75, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_makeGuess", - "name": "makeGuess", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 127, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getStatus", - "name": "getStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 141, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 155, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getName", - "name": "getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 159, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gameStarted", - "name": "gameStarted", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 169, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_playerJoined", - "name": "playerJoined", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_guessResult", - "name": "guessResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 190, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_someoneWon", - "name": "someoneWon", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 200, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_make_guess", - "name": "make_guess", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 215, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_history", - "name": "show_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 225, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 234, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 237, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 240, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_play_game", - "name": "play_game", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 316, - "column_start": 0, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_analyze_problems", - "name": "analyze_problems", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 364, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_GameHostBox", - "name": "GameHostBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 141, - "column_start": 0, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_GamePlayerBox", - "name": "GamePlayerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 225, - "column_start": 0, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "make_guess", - "show_history" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 240, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "random", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "typing Optional, List, Dict", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_async_complete AsyncArrowBox, AsyncFutureBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyash_v4_p2p_capsule public", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply_mode.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/apply_mode.hpp", - "language": "cpp", - "size_bytes": 468, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.547241195Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "argv_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/argv_input.hpp", - "language": "cpp", - "size_bytes": 1380, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.554150171Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_make_argv_source", - "name": "make_argv_source", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_argv_input", - "name": "argv_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_argv_input", - "name": "argv_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_argv_input", - "name": "argv_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/ascii.hpp", - "language": "cpp", - "size_bytes": 3640, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.556437413Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_alnum", - "name": "alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 6, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alpha", - "name": "alpha", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blank", - "name": "blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_digit", - "name": "digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ellipsis", - "name": "ellipsis", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_forty_two", - "name": "forty_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 29, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_first", - "name": "identifier_first", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_other", - "name": "identifier_other", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 29, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_keyword", - "name": "keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 29, - "column_end": 178, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lower", - "name": "lower", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 29, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 35, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nul", - "name": "nul", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_odigit", - "name": "odigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 29, - "column_end": 124, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print", - "name": "print", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 153, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 35, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 29, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seven", - "name": "seven", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_shebang", - "name": "shebang", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_space", - "name": "space", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 29, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_three", - "name": "three", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 25, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 25, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_upper", - "name": "upper", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xdigit", - "name": "xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "buffer_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/buffer_input.hpp", - "language": "cpp", - "size_bytes": 6729, - "total_lines": 240, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.564479279Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 139, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 165, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_auto_rewind", - "name": "auto_rewind", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 171, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 176, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 181, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 191, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 201, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 206, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 212, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 218, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_buffer_input", - "name": "buffer_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 236, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_action.hpp", - "language": "cpp", - "size_bytes": 1217, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.566484477Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action", - "name": "change_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_state.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_action_and_state.hpp", - "language": "cpp", - "size_bytes": 2559, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.568514886Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action_and_state", - "name": "change_action_and_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_states.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_action_and_states.hpp", - "language": "cpp", - "size_bytes": 2175, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.570579619Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action_and_states", - "name": "change_action_and_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 59, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_control.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_control.hpp", - "language": "cpp", - "size_bytes": 1087, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.572417143Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_control", - "name": "change_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_state.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_state.hpp", - "language": "cpp", - "size_bytes": 2348, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.574335312Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_state", - "name": "change_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_states.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/change_states.hpp", - "language": "cpp", - "size_bytes": 1967, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.576336760Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_states", - "name": "change_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "config.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/config.hpp", - "language": "cpp", - "size_bytes": 364, - "total_lines": 12, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.578080829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abnf.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/abnf.hpp", - "language": "cpp", - "size_bytes": 2331, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.581148050Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ALPHA", - "name": "ALPHA", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BIT", - "name": "BIT", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CHAR", - "name": "CHAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CR", - "name": "CR", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CRLF", - "name": "CRLF", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CTL", - "name": "CTL", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DIGIT", - "name": "DIGIT", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DQUOTE", - "name": "DQUOTE", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HEXDIG", - "name": "HEXDIG", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTAB", - "name": "HTAB", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LF", - "name": "LF", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LWSP", - "name": "LWSP", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 255, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_OCTET", - "name": "OCTET", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SP", - "name": "SP", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_VCHAR", - "name": "VCHAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 150, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_WSP", - "name": "WSP", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "add_state.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/add_state.hpp", - "language": "cpp", - "size_bytes": 2387, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.583165618Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_add_state", - "name": "add_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "alphabet.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/alphabet.hpp", - "language": "cpp", - "size_bytes": 3098, - "total_lines": 68, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.585200062Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/analyze.hpp", - "language": "cpp", - "size_bytes": 6368, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.587573101Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_analyze_entry", - "name": "analyze_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 9, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 9, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_consumes", - "name": "consumes", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 79, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 138, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_insert", - "name": "analyze_insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 160, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_insert_impl", - "name": "analyze_insert_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles", - "name": "analyze_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 185, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_entry", - "name": "analyze_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 148, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_cycles", - "name": "analyze_cycles", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze_traits.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/analyze_traits.hpp", - "language": "cpp", - "size_bytes": 10569, - "total_lines": 298, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.590702584Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_any_traits", - "name": "analyze_any_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_opt_traits", - "name": "analyze_opt_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_seq_traits", - "name": "analyze_seq_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_sor_traits", - "name": "analyze_sor_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_23", - "name": "class_23", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_24", - "name": "class_24", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_25", - "name": "class_25", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 172, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_28", - "name": "class_28", - "symbol_type": "Class", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_31", - "name": "class_31", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_33", - "name": "class_33", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_35", - "name": "class_35", - "symbol_type": "Class", - "file_path": "", - "line_start": 215, - "line_end": 217, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_36", - "name": "class_36", - "symbol_type": "Class", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_37", - "name": "class_37", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 232, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_40", - "name": "class_40", - "symbol_type": "Class", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_41", - "name": "class_41", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 273, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_48", - "name": "class_48", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 283, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 286, - "line_end": 288, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_50", - "name": "class_50", - "symbol_type": "Class", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "check_bytes.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/check_bytes.hpp", - "language": "cpp", - "size_bytes": 1636, - "total_lines": 56, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.592901953Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_check_bytes", - "name": "check_bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control_action.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/control_action.hpp", - "language": "cpp", - "size_bytes": 3402, - "total_lines": 94, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.595024217Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 60, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 64, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 68, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_impl", - "name": "match_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_control_action", - "name": "control_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 90, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "coverage.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/coverage.hpp", - "language": "cpp", - "size_bytes": 5417, - "total_lines": 163, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.597442282Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_visit_branches", - "name": "visit_branches", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_coverage_state", - "name": "coverage_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 83, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 94, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 105, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 115, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 125, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 140, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 144, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_coverage", - "name": "coverage", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 159, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_coverage_info", - "name": "coverage_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_entry", - "name": "coverage_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_insert", - "name": "coverage_insert", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_state", - "name": "coverage_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 145, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "forward.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/forward.hpp", - "language": "cpp", - "size_bytes": 482, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.599344628Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_traits", - "name": "analyze_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "function.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/function.hpp", - "language": "cpp", - "size_bytes": 1484, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.601267253Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_function", - "name": "function", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function", - "name": "function", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/http.hpp", - "language": "cpp", - "size_bytes": 10239, - "total_lines": 278, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.604733656Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 172, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 200, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 224, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 264, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_tchar", - "name": "tchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token", - "name": "token", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_name", - "name": "field_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_vchar", - "name": "field_vchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_content", - "name": "field_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_value", - "name": "field_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_header_field", - "name": "header_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method", - "name": "method", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_path", - "name": "absolute_path", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_origin_form", - "name": "origin_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_form", - "name": "absolute_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_authority_form", - "name": "authority_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_asterisk_form", - "name": "asterisk_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_request_target", - "name": "request_target", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_status_code", - "name": "status_code", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reason_phrase", - "name": "reason_phrase", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTTP_version", - "name": "HTTP_version", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_request_line", - "name": "request_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_status_line", - "name": "status_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_start_line", - "name": "start_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_body", - "name": "message_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTTP_message", - "name": "HTTP_message", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Content_Length", - "name": "Content_Length", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uri_host", - "name": "uri_host", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_port", - "name": "port", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Host", - "name": "Host", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_pair", - "name": "quoted_pair", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string", - "name": "quoted_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_parameter", - "name": "transfer_parameter", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_extension", - "name": "transfer_extension", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_coding", - "name": "transfer_coding", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rank", - "name": "rank", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 95, - "column_start": 3, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_t_ranking", - "name": "t_ranking", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_t_codings", - "name": "t_codings", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 3, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TE", - "name": "TE", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_connection_option", - "name": "connection_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Connection", - "name": "Connection", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Trailer", - "name": "Trailer", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Transfer_Encoding", - "name": "Transfer_Encoding", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol_name", - "name": "protocol_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol_version", - "name": "protocol_version", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol", - "name": "protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Upgrade", - "name": "Upgrade", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pseudonym", - "name": "pseudonym", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_received_protocol", - "name": "received_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_received_by", - "name": "received_by", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Via", - "name": "Via", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_http_URI", - "name": "http_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 3, - "column_end": 149, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_https_URI", - "name": "https_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 3, - "column_end": 155, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_partial_URI", - "name": "partial_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_size", - "name": "chunk_size", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 173, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext_name", - "name": "chunk_ext_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext_val", - "name": "chunk_ext_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext", - "name": "chunk_ext", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_data", - "name": "chunk_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 201, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 225, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_59", - "name": "class_59", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 235, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 242, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk", - "name": "chunk", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 265, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_last_chunk", - "name": "last_chunk", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trailer_part", - "name": "trailer_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunked_body", - "name": "chunked_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/icu/internal.hpp", - "language": "cpp", - "size_bytes": 3017, - "total_lines": 99, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.608346348Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 74, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 48, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 75, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/icu/utf16.hpp", - "language": "cpp", - "size_bytes": 13006, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.610908395Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 191, - "line_end": 191, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/icu/utf32.hpp", - "language": "cpp", - "size_bytes": 13006, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.613600624Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 191, - "line_end": 191, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/icu/utf8.hpp", - "language": "cpp", - "size_bytes": 6458, - "total_lines": 105, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.615862656Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 32, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 28, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 36, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 33, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 31, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 39, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 37, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 31, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 30, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 28, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 30, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 32, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 34, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 30, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 30, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 30, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_then.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/if_then.hpp", - "language": "cpp", - "size_bytes": 1656, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.618266425Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_pair", - "name": "if_pair", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 24, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then", - "name": "if_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then", - "name": "if_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input_with_depth.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/input_with_depth.hpp", - "language": "cpp", - "size_bytes": 1606, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.620124903Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 9, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_depth_guard", - "name": "depth_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_input_with_depth", - "name": "input_with_depth", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instantiate.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/instantiate.hpp", - "language": "cpp", - "size_bytes": 1145, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.621940862Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_instantiate", - "name": "instantiate", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integer.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/integer.hpp", - "language": "cpp", - "size_bytes": 16003, - "total_lines": 470, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.625099063Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_is_digit", - "name": "is_digit", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accumulate_digit", - "name": "accumulate_digit", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accumulate_digits", - "name": "accumulate_digits", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 102, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_positive", - "name": "convert_positive", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 111, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_negative", - "name": "convert_negative", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_unsigned", - "name": "convert_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_signed", - "name": "convert_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 149, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_unsigned", - "name": "match_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 168, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_and_convert_unsigned_with_maximum_throws", - "name": "match_and_convert_unsigned_with_maximum_throws", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 194, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_and_convert_unsigned_with_maximum_nothrow", - "name": "match_and_convert_unsigned_with_maximum_nothrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 226, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 242, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 254, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 288, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 306, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 322, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 345, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 360, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 376, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 388, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 421, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 434, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_unsigned_rule_old", - "name": "unsigned_rule_old", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule_new", - "name": "unsigned_rule_new", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_old", - "name": "signed_rule_old", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_new", - "name": "signed_rule_new", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_bis", - "name": "signed_rule_bis", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_ter", - "name": "signed_rule_ter", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_action", - "name": "unsigned_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 243, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule", - "name": "unsigned_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule_with_action", - "name": "unsigned_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 289, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_action", - "name": "maximum_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 307, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_rule", - "name": "maximum_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 310, - "line_end": 323, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_rule_with_action", - "name": "maximum_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 326, - "line_end": 361, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_action", - "name": "signed_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 363, - "line_end": 377, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule", - "name": "signed_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 379, - "line_end": 389, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_action_action", - "name": "signed_action_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 394, - "line_end": 396, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 399, - "line_end": 401, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_with_action", - "name": "signed_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 405, - "line_end": 435, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 438, - "line_end": 440, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 443, - "line_end": 445, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 450, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 453, - "line_end": 455, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 463, - "line_end": 465, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/endian.hpp", - "language": "cpp", - "size_bytes": 1781, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.630237169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian_gcc.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/endian_gcc.hpp", - "language": "cpp", - "size_bytes": 5006, - "total_lines": 201, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.632554488Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 132, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 159, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 164, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 169, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 182, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 104, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 116, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 133, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 147, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 170, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 193, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian_win.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/endian_win.hpp", - "language": "cpp", - "size_bytes": 2563, - "total_lines": 105, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.634631082Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 90, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 95, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 101, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_mask_uint.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_mask_uint.hpp", - "language": "cpp", - "size_bytes": 1703, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.636544237Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_mask_uint_impl", - "name": "peek_mask_uint_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_mask_uint8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_mask_uint8.hpp", - "language": "cpp", - "size_bytes": 936, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.638372333Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_mask_uint8", - "name": "peek_mask_uint8", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_uint.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_uint.hpp", - "language": "cpp", - "size_bytes": 1397, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.640220877Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_uint_impl", - "name": "peek_uint_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_uint8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_uint8.hpp", - "language": "cpp", - "size_bytes": 871, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.642080745Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_uint8", - "name": "peek_uint8", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf16.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_utf16.hpp", - "language": "cpp", - "size_bytes": 1652, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.646466548Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf16_impl", - "name": "peek_utf16_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf32.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/peek_utf32.hpp", - "language": "cpp", - "size_bytes": 1228, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.648331273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf32_impl", - "name": "peek_utf32_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "read_uint.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/read_uint.hpp", - "language": "cpp", - "size_bytes": 1695, - "total_lines": 76, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.650175909Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_read_uint16_be", - "name": "read_uint16_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint16_le", - "name": "read_uint16_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint32_be", - "name": "read_uint32_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint32_le", - "name": "read_uint32_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint64_be", - "name": "read_uint64_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint64_le", - "name": "read_uint64_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "set_stack_guard.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/set_stack_guard.hpp", - "language": "cpp", - "size_bytes": 1467, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.652046965Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vector_stack_guard.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/internal/vector_stack_guard.hpp", - "language": "cpp", - "size_bytes": 1308, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.653963006Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iri.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/iri.hpp", - "language": "cpp", - "size_bytes": 3985, - "total_lines": 107, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.656650778Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ucschar", - "name": "ucschar", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 57, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iprivate", - "name": "iprivate", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iunreserved", - "name": "iunreserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipchar", - "name": "ipchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment", - "name": "isegment", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment_nz", - "name": "isegment_nz", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment_nz_nc", - "name": "isegment_nz_nc", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_abempty", - "name": "ipath_abempty", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_absolute", - "name": "ipath_absolute", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_noscheme", - "name": "ipath_noscheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_rootless", - "name": "ipath_rootless", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_empty", - "name": "ipath_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath", - "name": "ipath", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ireg_name", - "name": "ireg_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ihost", - "name": "ihost", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iuserinfo", - "name": "iuserinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_iuserinfo", - "name": "opt_iuserinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iauthority", - "name": "iauthority", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iquery", - "name": "iquery", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ifragment", - "name": "ifragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_iquery", - "name": "opt_iquery", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_ifragment", - "name": "opt_ifragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ihier_part", - "name": "ihier_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 3, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_irelative_part", - "name": "irelative_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_irelative_ref", - "name": "irelative_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IRI", - "name": "IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IRI_reference", - "name": "IRI_reference", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_IRI", - "name": "absolute_IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/json.hpp", - "language": "cpp", - "size_bytes": 3319, - "total_lines": 92, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.658998533Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_padr", - "name": "padr", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_begin_array", - "name": "begin_array", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_begin_object", - "name": "begin_object", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_end_array", - "name": "end_array", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_end_object", - "name": "end_object", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_separator", - "name": "name_separator", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_separator", - "name": "value_separator", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_false_", - "name": "false_", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_null", - "name": "null", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_true_", - "name": "true_", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_digits", - "name": "digits", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_frac", - "name": "frac", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int_", - "name": "int_", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xdigit", - "name": "xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unicode", - "name": "unicode", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_char", - "name": "escaped_char", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescaped", - "name": "unescaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_", - "name": "char_", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_content", - "name": "string_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_content", - "name": "key_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key", - "name": "key", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_element", - "name": "array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_array_element", - "name": "next_array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_content", - "name": "array_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array", - "name": "array", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 70, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_member_value", - "name": "member_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_member", - "name": "member", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_member", - "name": "next_member", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object_content", - "name": "object_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object", - "name": "object", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_element", - "name": "array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_text", - "name": "text", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_pointer.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/json_pointer.hpp", - "language": "cpp", - "size_bytes": 1123, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.660936908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_unescaped", - "name": "unescaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reference_token", - "name": "reference_token", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_non_negative_integer", - "name": "non_negative_integer", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_json_pointer", - "name": "relative_json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_bytes.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/limit_bytes.hpp", - "language": "cpp", - "size_bytes": 2570, - "total_lines": 91, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.662876948Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 9, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 86, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_limit_bytes", - "name": "limit_bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 87, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_depth.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/limit_depth.hpp", - "language": "cpp", - "size_bytes": 1811, - "total_lines": 60, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.664837015Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_limit_depth", - "name": "limit_depth", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nested_exceptions.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/nested_exceptions.hpp", - "language": "cpp", - "size_bytes": 3893, - "total_lines": 112, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.666883859Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_rethrow", - "name": "rethrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rethrow", - "name": "rethrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rethrow", - "name": "rethrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 56, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_process", - "name": "process", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inspect", - "name": "inspect", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inspect", - "name": "inspect", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inspect", - "name": "inspect", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 108, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rethrower", - "name": "rethrower", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_processor", - "name": "processor", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inspector", - "name": "inspector", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 81, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/parse_tree.hpp", - "language": "cpp", - "size_bytes": 16079, - "total_lines": 458, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.670292899Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_type", - "name": "is_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_type", - "name": "set_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_as_memory_input", - "name": "as_memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_content", - "name": "remove_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 128, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 140, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_state", - "name": "state", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 173, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 185, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 190, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 197, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 204, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 261, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 271, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 283, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 297, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 310, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 318, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 334, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 393, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 409, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 425, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 443, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 454, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_basic_node", - "name": "basic_node", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 152, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_node", - "name": "node", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 186, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_make_control", - "name": "make_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 229, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state_handler", - "name": "state_handler", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 9, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 284, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 335, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 341, - "line_end": 341, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 347, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 354, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 368, - "line_end": 379, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_on", - "name": "on", - "symbol_type": "Class", - "file_path": "", - "line_start": 372, - "line_end": 378, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_store_content", - "name": "store_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 381, - "line_end": 383, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_remove_content", - "name": "remove_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 386, - "line_end": 394, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fold_one", - "name": "fold_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 410, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_discard_empty", - "name": "discard_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 413, - "line_end": 426, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree_to_dot.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/parse_tree_to_dot.hpp", - "language": "cpp", - "size_bytes": 3274, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.673195448Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_dot_node", - "name": "print_dot_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_dot", - "name": "print_dot", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 110, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "predicates.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/predicates.hpp", - "language": "cpp", - "size_bytes": 4674, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.675316585Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 92, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_predicates_and_test", - "name": "predicates_and_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not_test", - "name": "predicate_not_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or_test", - "name": "predicates_or_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates", - "name": "predicates", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_and", - "name": "predicates_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 33, - "column_end": 141, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not", - "name": "predicate_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 29, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or", - "name": "predicates_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 33, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_and", - "name": "predicates_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 33, - "column_end": 141, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not", - "name": "predicate_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 29, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or", - "name": "predicates_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 33, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "print.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/print.hpp", - "language": "cpp", - "size_bytes": 1864, - "total_lines": 76, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.677433434Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 44, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_subs", - "name": "print_subs", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_sub", - "name": "print_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_names", - "name": "print_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_debug", - "name": "print_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_print_names", - "name": "print_names", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_debug", - "name": "print_debug", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "print_coverage.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/print_coverage.hpp", - "language": "cpp", - "size_bytes": 1743, - "total_lines": 56, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.679305840Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "raw_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/raw_string.hpp", - "language": "cpp", - "size_bytes": 8588, - "total_lines": 233, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.681788949Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 55, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 91, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 127, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 155, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 218, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raw_string_open", - "name": "raw_string_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at_raw_string_close", - "name": "at_raw_string_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raw_string_until", - "name": "raw_string_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 128, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raw_string", - "name": "raw_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 219, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_content", - "name": "content", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 195, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "remove_first_state.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/remove_first_state.hpp", - "language": "cpp", - "size_bytes": 3354, - "total_lines": 79, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.683956988Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_first_state", - "name": "remove_first_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "remove_last_states.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/remove_last_states.hpp", - "language": "cpp", - "size_bytes": 7004, - "total_lines": 134, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.686664703Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start_impl", - "name": "start_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success_impl", - "name": "success_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure_impl", - "name": "failure_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_impl", - "name": "raise_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested_impl", - "name": "raise_nested_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_impl", - "name": "unwind_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 98, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_impl", - "name": "apply_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_impl", - "name": "apply0_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_last_states", - "name": "remove_last_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 127, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_one_min_max.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/rep_one_min_max.hpp", - "language": "cpp", - "size_bytes": 3133, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.689324894Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 60, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 87, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_one_min_max", - "name": "rep_one_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_one_min_max", - "name": "rep_one_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/rep_string.hpp", - "language": "cpp", - "size_bytes": 1150, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.691396189Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_rep_string", - "name": "make_rep_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_string", - "name": "rep_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "separated_seq.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/separated_seq.hpp", - "language": "cpp", - "size_bytes": 1189, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.693189571Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_sep", - "name": "sep", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_separated_seq", - "name": "separated_seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "shuffle_states.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/shuffle_states.hpp", - "language": "cpp", - "size_bytes": 10327, - "total_lines": 212, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.696461287Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start_impl", - "name": "start_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success_impl", - "name": "success_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure_impl", - "name": "failure_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_impl", - "name": "raise_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested_impl", - "name": "raise_nested_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_impl", - "name": "unwind_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 142, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_impl", - "name": "apply_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 163, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 170, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 177, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_impl", - "name": "apply0_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 184, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 191, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 198, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rotate_left", - "name": "rotate_left", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rotate_right", - "name": "rotate_right", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reverse", - "name": "reverse", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_shuffle_states", - "name": "shuffle_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 199, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "state_control.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/state_control.hpp", - "language": "cpp", - "size_bytes": 5257, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.699043635Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 40, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 70, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 88, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 104, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 114, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 124, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state_control", - "name": "state_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 129, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/to_string.hpp", - "language": "cpp", - "size_bytes": 929, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.700917642Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_string", - "name": "to_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "trace.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/trace.hpp", - "language": "cpp", - "size_bytes": 9922, - "total_lines": 248, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.703511315Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 6, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_position", - "name": "print_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update_position", - "name": "update_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 111, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 131, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 144, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 169, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 175, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 181, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 191, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_standard_trace", - "name": "standard_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_complete_trace", - "name": "complete_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 214, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 240, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_tracer_traits", - "name": "tracer_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tracer", - "name": "tracer", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 192, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trace", - "name": "trace", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 241, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint16.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/uint16.hpp", - "language": "cpp", - "size_bytes": 4793, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.706229733Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint32.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/uint32.hpp", - "language": "cpp", - "size_bytes": 4793, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.708595439Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint64.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/uint64.hpp", - "language": "cpp", - "size_bytes": 4794, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.710929635Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/uint8.hpp", - "language": "cpp", - "size_bytes": 2505, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.713043871Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 34, - "column_end": 134, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 48, - "column_end": 153, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 34, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 48, - "column_end": 149, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 34, - "column_end": 150, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 50, - "column_end": 165, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 64, - "column_end": 184, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 50, - "column_end": 161, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 64, - "column_end": 180, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 50, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 50, - "column_end": 181, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unescape.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/unescape.hpp", - "language": "cpp", - "size_bytes": 7232, - "total_lines": 215, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.715487146Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_utf8_append_utf32", - "name": "utf8_append_utf32", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unhex_char", - "name": "unhex_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 87, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unhex_string", - "name": "unhex_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_one", - "name": "apply_one", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_two", - "name": "apply_two", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 139, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 163, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 174, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 210, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_append_all", - "name": "append_all", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_c", - "name": "unescape_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 140, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_u", - "name": "unescape_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 165, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_x", - "name": "unescape_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 175, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_j", - "name": "unescape_j", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 211, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/uri.hpp", - "language": "cpp", - "size_bytes": 5213, - "total_lines": 112, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.718552135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_dec_octet", - "name": "dec_octet", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPv4address", - "name": "IPv4address", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_h16", - "name": "h16", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ls32", - "name": "ls32", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dcolon", - "name": "dcolon", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPv6address", - "name": "IPv6address", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 53, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_gen_delims", - "name": "gen_delims", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sub_delims", - "name": "sub_delims", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unreserved", - "name": "unreserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reserved", - "name": "reserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPvFuture", - "name": "IPvFuture", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 124, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IP_literal", - "name": "IP_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pct_encoded", - "name": "pct_encoded", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pchar", - "name": "pchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_query", - "name": "query", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fragment", - "name": "fragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment", - "name": "segment", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_nz", - "name": "segment_nz", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_nz_nc", - "name": "segment_nz_nc", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_abempty", - "name": "path_abempty", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_absolute", - "name": "path_absolute", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_noscheme", - "name": "path_noscheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_rootless", - "name": "path_rootless", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_empty", - "name": "path_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path", - "name": "path", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reg_name", - "name": "reg_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_port", - "name": "port", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_host", - "name": "host", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_userinfo", - "name": "userinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_userinfo", - "name": "opt_userinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_authority", - "name": "authority", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_scheme", - "name": "scheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 3, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hier_part", - "name": "hier_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_part", - "name": "relative_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_ref", - "name": "relative_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_URI", - "name": "URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_URI_reference", - "name": "URI_reference", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_URI", - "name": "absolute_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/utf16.hpp", - "language": "cpp", - "size_bytes": 3029, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.720615909Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/contrib/utf32.hpp", - "language": "cpp", - "size_bytes": 3029, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.723210468Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstream_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/cstream_input.hpp", - "language": "cpp", - "size_bytes": 1010, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.725778046Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstream_input", - "name": "cstream_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstream_input", - "name": "cstream_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "demangle.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/demangle.hpp", - "language": "cpp", - "size_bytes": 3683, - "total_lines": 144, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.727984136Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_demangle", - "name": "demangle", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "disable_action.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/disable_action.hpp", - "language": "cpp", - "size_bytes": 1046, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.730007719Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_disable_action", - "name": "disable_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/discard_input.hpp", - "language": "cpp", - "size_bytes": 1085, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.731853502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input", - "name": "discard_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input_on_failure.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/discard_input_on_failure.hpp", - "language": "cpp", - "size_bytes": 1157, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.733860281Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input_on_failure", - "name": "discard_input_on_failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input_on_success.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/discard_input_on_success.hpp", - "language": "cpp", - "size_bytes": 1156, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.735689535Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input_on_success", - "name": "discard_input_on_success", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_action.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/enable_action.hpp", - "language": "cpp", - "size_bytes": 1042, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.737590501Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_enable_action", - "name": "enable_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/eol.hpp", - "language": "cpp", - "size_bytes": 1106, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.739341375Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_eol", - "name": "eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cr", - "name": "cr", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cr_crlf", - "name": "cr_crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_crlf", - "name": "crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lf", - "name": "lf", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lf_crlf", - "name": "lf_crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/file_input.hpp", - "language": "cpp", - "size_bytes": 1223, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.741091816Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_input", - "name": "file_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_input", - "name": "file_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/action.hpp", - "language": "cpp", - "size_bytes": 1592, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.744173480Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/action_input.hpp", - "language": "cpp", - "size_bytes": 3052, - "total_lines": 117, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.746252151Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_input", - "name": "action_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 113, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "any.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/any.hpp", - "language": "cpp", - "size_bytes": 1997, - "total_lines": 84, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.748292400Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/apply.hpp", - "language": "cpp", - "size_bytes": 1636, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.750115586Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply0.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/apply0.hpp", - "language": "cpp", - "size_bytes": 1434, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.751942070Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply0", - "name": "apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply0_single.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/apply0_single.hpp", - "language": "cpp", - "size_bytes": 1127, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.753727393Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply0_single", - "name": "apply0_single", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply_single.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/apply_single.hpp", - "language": "cpp", - "size_bytes": 1232, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.755739893Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply_single", - "name": "apply_single", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "at.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/at.hpp", - "language": "cpp", - "size_bytes": 1493, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.757705407Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at", - "name": "at", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bof.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/bof.hpp", - "language": "cpp", - "size_bytes": 775, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.759505837Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bof", - "name": "bof", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/bol.hpp", - "language": "cpp", - "size_bytes": 777, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.761245080Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bol", - "name": "bol", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bump.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/bump.hpp", - "language": "cpp", - "size_bytes": 1176, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.763012557Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bump", - "name": "bump", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bump_in_this_line", - "name": "bump_in_this_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bump_to_next_line", - "name": "bump_to_next_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bump_help.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/bump_help.hpp", - "language": "cpp", - "size_bytes": 722, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.764774376Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bump_help", - "name": "bump_help", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bytes.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/bytes.hpp", - "language": "cpp", - "size_bytes": 1038, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.766575586Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bytes", - "name": "bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/control.hpp", - "language": "cpp", - "size_bytes": 1607, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.768470821Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "crlf_eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/crlf_eol.hpp", - "language": "cpp", - "size_bytes": 954, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.770233325Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_eol_match", - "name": "eol_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_crlf_eol", - "name": "crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cr_crlf_eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/cr_crlf_eol.hpp", - "language": "cpp", - "size_bytes": 993, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.772191538Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_eol_match", - "name": "eol_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cr_crlf_eol", - "name": "cr_crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cr_eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/cr_eol.hpp", - "language": "cpp", - "size_bytes": 908, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.774073899Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_eol_match", - "name": "eol_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cr_eol", - "name": "cr_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstream_reader.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/cstream_reader.hpp", - "language": "cpp", - "size_bytes": 1590, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.775859527Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstream_reader", - "name": "cstream_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstream_reader", - "name": "cstream_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstring_reader.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/cstring_reader.hpp", - "language": "cpp", - "size_bytes": 1029, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.777678784Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstring_reader", - "name": "cstring_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstring_reader", - "name": "cstring_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "data_and_size.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/data_and_size.hpp", - "language": "cpp", - "size_bytes": 734, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.779422283Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_data_and_size", - "name": "data_and_size", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "dependent_false.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/dependent_false.hpp", - "language": "cpp", - "size_bytes": 510, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.781121199Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "disable.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/disable.hpp", - "language": "cpp", - "size_bytes": 1439, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.782950264Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_disable", - "name": "disable", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/discard.hpp", - "language": "cpp", - "size_bytes": 860, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.784718205Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard", - "name": "discard", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/enable.hpp", - "language": "cpp", - "size_bytes": 1430, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.786554285Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_enable", - "name": "enable", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_control.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/enable_control.hpp", - "language": "cpp", - "size_bytes": 827, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.788431347Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eof.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/eof.hpp", - "language": "cpp", - "size_bytes": 797, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.790172676Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eof", - "name": "eof", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/eol.hpp", - "language": "cpp", - "size_bytes": 850, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.791911108Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eol", - "name": "eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eolf.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/eolf.hpp", - "language": "cpp", - "size_bytes": 901, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.793699950Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eolf", - "name": "eolf", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "everything.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/everything.hpp", - "language": "cpp", - "size_bytes": 923, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.795444839Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_everything", - "name": "everything", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "extract_position.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/extract_position.hpp", - "language": "cpp", - "size_bytes": 1010, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.797250800Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_extract_position", - "name": "extract_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "failure.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/failure.hpp", - "language": "cpp", - "size_bytes": 794, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.799055360Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_failure", - "name": "failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_apply.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_apply.hpp", - "language": "cpp", - "size_bytes": 772, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.800873816Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_apply0.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_apply0.hpp", - "language": "cpp", - "size_bytes": 777, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.802696169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_current_position.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_current_position.hpp", - "language": "cpp", - "size_bytes": 854, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.804525192Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_error_message.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_error_message.hpp", - "language": "cpp", - "size_bytes": 704, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.806392983Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_match.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_match.hpp", - "language": "cpp", - "size_bytes": 1378, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.808324743Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_unwind.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/has_unwind.hpp", - "language": "cpp", - "size_bytes": 671, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.810303436Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "identifier.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/identifier.hpp", - "language": "cpp", - "size_bytes": 741, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.812159449Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_apply.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/if_apply.hpp", - "language": "cpp", - "size_bytes": 1869, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.814343091Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_apply", - "name": "if_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_must.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/if_must.hpp", - "language": "cpp", - "size_bytes": 1616, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.816239874Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_must", - "name": "if_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_must_else.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/if_must_else.hpp", - "language": "cpp", - "size_bytes": 732, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.817906816Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_then_else.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/if_then_else.hpp", - "language": "cpp", - "size_bytes": 1727, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.819811858Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_then_else", - "name": "if_then_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "inputerator.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/inputerator.hpp", - "language": "cpp", - "size_bytes": 1339, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.821794417Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_inputerator", - "name": "inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inputerator", - "name": "inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inputerator", - "name": "inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inputerator", - "name": "inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_inputerator", - "name": "inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_inputerator", - "name": "inputerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istream_reader.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/istream_reader.hpp", - "language": "cpp", - "size_bytes": 1344, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.823680855Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_istream_reader", - "name": "istream_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istream_reader", - "name": "istream_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istring.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/istring.hpp", - "language": "cpp", - "size_bytes": 2469, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.825659337Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ichar_equal", - "name": "ichar_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_istring_equal", - "name": "istring_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 81, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lf_crlf_eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/lf_crlf_eol.hpp", - "language": "cpp", - "size_bytes": 1183, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.827561262Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_eol_match", - "name": "eol_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lf_crlf_eol", - "name": "lf_crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lf_eol.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/lf_eol.hpp", - "language": "cpp", - "size_bytes": 908, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.829347185Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_eol_match", - "name": "eol_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lf_eol", - "name": "lf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/list.hpp", - "language": "cpp", - "size_bytes": 542, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.831094698Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_must.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/list_must.hpp", - "language": "cpp", - "size_bytes": 705, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.832900153Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_tail.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/list_tail.hpp", - "language": "cpp", - "size_bytes": 573, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.834631769Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_tail_pad.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/list_tail_pad.hpp", - "language": "cpp", - "size_bytes": 644, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.836520641Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "minus.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/minus.hpp", - "language": "cpp", - "size_bytes": 584, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.838193061Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "missing_apply.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/missing_apply.hpp", - "language": "cpp", - "size_bytes": 1014, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.839998727Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_missing_apply", - "name": "missing_apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "missing_apply0.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/missing_apply0.hpp", - "language": "cpp", - "size_bytes": 904, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.841760189Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_missing_apply0", - "name": "missing_apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mmap_file.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/mmap_file.hpp", - "language": "cpp", - "size_bytes": 1108, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.843524895Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mmap_file", - "name": "mmap_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file", - "name": "mmap_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file", - "name": "mmap_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_mmap_file", - "name": "mmap_file", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mmap_file_posix.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/mmap_file_posix.hpp", - "language": "cpp", - "size_bytes": 4274, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.845802319Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_posix", - "name": "mmap_file_posix", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_posix", - "name": "mmap_file_posix", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 109, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_posix", - "name": "mmap_file_posix", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_posix", - "name": "mmap_file_posix", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 126, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stat", - "name": "stat", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 9, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mmap_file_posix", - "name": "mmap_file_posix", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 151, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mmap_file_win32.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/mmap_file_win32.hpp", - "language": "cpp", - "size_bytes": 7549, - "total_lines": 243, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.848351461Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_mmap", - "name": "mmap_file_mmap", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_mmap", - "name": "mmap_file_mmap", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 128, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_mmap", - "name": "mmap_file_mmap", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_mmap", - "name": "mmap_file_mmap", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 169, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_win32", - "name": "mmap_file_win32", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_win32", - "name": "mmap_file_win32", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 196, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_win32", - "name": "mmap_file_win32", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_file_win32", - "name": "mmap_file_win32", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 199, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 204, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 212, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 217, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 222, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 227, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 232, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_mmap_file_open", - "name": "mmap_file_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 117, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mmap_file_mmap", - "name": "mmap_file_mmap", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 170, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mmap_file_win32", - "name": "mmap_file_win32", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 237, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "must.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/must.hpp", - "language": "cpp", - "size_bytes": 1956, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.850383524Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_must", - "name": "must", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "not_at.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/not_at.hpp", - "language": "cpp", - "size_bytes": 1526, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.852383603Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_not_at", - "name": "not_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "one.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/one.hpp", - "language": "cpp", - "size_bytes": 1829, - "total_lines": 68, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.854510533Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "opt.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/opt.hpp", - "language": "cpp", - "size_bytes": 859, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.856386247Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_opt", - "name": "opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pad.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/pad.hpp", - "language": "cpp", - "size_bytes": 747, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.858242260Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pad_opt.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/pad_opt.hpp", - "language": "cpp", - "size_bytes": 584, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.860066436Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "partial.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/partial.hpp", - "language": "cpp", - "size_bytes": 1275, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.861962798Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_partial", - "name": "partial", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "path_to_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/path_to_string.hpp", - "language": "cpp", - "size_bytes": 752, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.863832348Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_path_to_string", - "name": "path_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_char.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/peek_char.hpp", - "language": "cpp", - "size_bytes": 827, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.865655671Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_char", - "name": "peek_char", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/peek_utf8.hpp", - "language": "cpp", - "size_bytes": 2907, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.867652315Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_peek_impl", - "name": "peek_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 85, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf8", - "name": "peek_utf8", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/pegtl_string.hpp", - "language": "cpp", - "size_bytes": 3952, - "total_lines": 95, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.869714803Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_join", - "name": "string_join", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_at", - "name": "string_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_max_length", - "name": "string_max_length", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plus.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/plus.hpp", - "language": "cpp", - "size_bytes": 1757, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.871620594Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "raise.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/raise.hpp", - "language": "cpp", - "size_bytes": 1312, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.873475711Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raise", - "name": "raise", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "range.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/range.hpp", - "language": "cpp", - "size_bytes": 1837, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.875360274Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ranges.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/ranges.hpp", - "language": "cpp", - "size_bytes": 2790, - "total_lines": 92, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.877430421Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_validate_range", - "name": "validate_range", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_impl", - "name": "test_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 70, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "read_file_stdio.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/read_file_stdio.hpp", - "language": "cpp", - "size_bytes": 4708, - "total_lines": 156, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.879683845Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file_stdio", - "name": "read_file_stdio", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file_stdio", - "name": "read_file_stdio", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file_stdio", - "name": "read_file_stdio", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file_stdio", - "name": "read_file_stdio", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 121, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 131, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 151, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_read_file_close", - "name": "read_file_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_file_stdio", - "name": "read_file_stdio", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 152, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rematch.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rematch.hpp", - "language": "cpp", - "size_bytes": 2533, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.881839326Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rematch", - "name": "rematch", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rep.hpp", - "language": "cpp", - "size_bytes": 1785, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.883795021Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep", - "name": "rep", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_min.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rep_min.hpp", - "language": "cpp", - "size_bytes": 616, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.885661990Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_min_max.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rep_min_max.hpp", - "language": "cpp", - "size_bytes": 2460, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.887664218Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_min_max", - "name": "rep_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_opt.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rep_opt.hpp", - "language": "cpp", - "size_bytes": 1678, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.889576204Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_opt", - "name": "rep_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/require.hpp", - "language": "cpp", - "size_bytes": 1029, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.891363645Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "resize_uninitialized.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/resize_uninitialized.hpp", - "language": "cpp", - "size_bytes": 5759, - "total_lines": 182, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.893718259Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 105, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 121, - "column_start": 16, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_no_init_byte", - "name": "no_init_byte", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 9, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized_proxy", - "name": "resize_uninitialized_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized", - "name": "resize_uninitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 164, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_resize_uninitialized", - "name": "resize_uninitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 178, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_odr_helper", - "name": "odr_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_proxy", - "name": "string_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 15, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_proxy", - "name": "string_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 15, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_proxy", - "name": "string_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 15, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_proxy", - "name": "string_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 15, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_vector_proxy", - "name": "vector_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 15, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_vector_proxy", - "name": "vector_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 122, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 15, - "column_end": 118, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_no_init_byte", - "name": "no_init_byte", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "result_on_found.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/result_on_found.hpp", - "language": "cpp", - "size_bytes": 525, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.895591781Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rewind_guard.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rewind_guard.hpp", - "language": "cpp", - "size_bytes": 2288, - "total_lines": 86, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.897491082Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rewind_guard", - "name": "rewind_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rules.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/rules.hpp", - "language": "cpp", - "size_bytes": 1689, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.899327015Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "seq.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/seq.hpp", - "language": "cpp", - "size_bytes": 1650, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.901209513Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sor.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/sor.hpp", - "language": "cpp", - "size_bytes": 1990, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.903288668Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/star.hpp", - "language": "cpp", - "size_bytes": 841, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.905122294Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_star", - "name": "star", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star_must.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/star_must.hpp", - "language": "cpp", - "size_bytes": 696, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.906843111Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star_partial.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/star_partial.hpp", - "language": "cpp", - "size_bytes": 1315, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.908687093Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_star_partial", - "name": "star_partial", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star_strict.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/star_strict.hpp", - "language": "cpp", - "size_bytes": 1623, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.910572562Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_star_strict", - "name": "star_strict", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "state.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/state.hpp", - "language": "cpp", - "size_bytes": 2367, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.912543890Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "stream_to_string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/stream_to_string.hpp", - "language": "cpp", - "size_bytes": 666, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.914347913Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_stream_to_string", - "name": "stream_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "strict.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/strict.hpp", - "language": "cpp", - "size_bytes": 1603, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.916206160Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_strict", - "name": "strict", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/string.hpp", - "language": "cpp", - "size_bytes": 1984, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.918433711Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unsafe_equals", - "name": "unsafe_equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "success.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/success.hpp", - "language": "cpp", - "size_bytes": 793, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.920271214Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_success", - "name": "success", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "try_catch_raise_nested.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/try_catch_raise_nested.hpp", - "language": "cpp", - "size_bytes": 3017, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.922259873Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_try_catch_raise_nested", - "name": "try_catch_raise_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "try_catch_return_false.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/try_catch_return_false.hpp", - "language": "cpp", - "size_bytes": 2866, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.924277051Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_try_catch_return_false", - "name": "try_catch_return_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "until.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/until.hpp", - "language": "cpp", - "size_bytes": 2577, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.926414907Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_until", - "name": "until", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 53, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unwind_guard.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/internal/unwind_guard.hpp", - "language": "cpp", - "size_bytes": 1019, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.928255518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istream_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/istream_input.hpp", - "language": "cpp", - "size_bytes": 1014, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.930455087Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_istream_input", - "name": "istream_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istream_input", - "name": "istream_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "match.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/match.hpp", - "language": "cpp", - "size_bytes": 7038, - "total_lines": 174, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.933031851Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match_no_control", - "name": "match_no_control", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_no_control", - "name": "match_no_control", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_control_unwind", - "name": "match_control_unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 90, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 166, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/memory_input.hpp", - "language": "cpp", - "size_bytes": 12589, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.936255485Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 59, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 9, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 9, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 153, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 161, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 9, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 9, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 174, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 179, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 189, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 194, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 199, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 204, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 211, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 217, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 255, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 273, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 276, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 280, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 286, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 291, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 296, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 301, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 306, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 311, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 316, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_restart", - "name": "restart", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 324, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 336, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 338, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_56", - "name": "function_56", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 340, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_auto_rewind", - "name": "auto_rewind", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 346, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 351, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 356, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_60", - "name": "function_60", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 361, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 366, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 375, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 381, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 139, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 227, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_memory_input", - "name": "memory_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 387, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mmap_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/mmap_input.hpp", - "language": "cpp", - "size_bytes": 1420, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.938323336Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_mmap_input", - "name": "mmap_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "must_if.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/must_if.hpp", - "language": "cpp", - "size_bytes": 2433, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.940181371Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 47, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 65, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_must_if", - "name": "must_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 67, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "normal.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/normal.hpp", - "language": "cpp", - "size_bytes": 4392, - "total_lines": 123, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.942188129Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 38, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 42, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 46, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 91, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_normal", - "name": "normal", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 119, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nothing.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/nothing.hpp", - "language": "cpp", - "size_bytes": 473, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.943834327Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_nothing", - "name": "nothing", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/parse.hpp", - "language": "cpp", - "size_bytes": 2179, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.945575340Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_nested", - "name": "parse_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_error.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/parse_error.hpp", - "language": "cpp", - "size_bytes": 1849, - "total_lines": 60, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.947219695Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_error_template", - "name": "parse_error_template", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error_template", - "name": "parse_error_template", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_disambiguate_t", - "name": "disambiguate_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error_template", - "name": "parse_error_template", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_error_base.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/parse_error_base.hpp", - "language": "cpp", - "size_bytes": 1160, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.948795351Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error_base", - "name": "parse_error_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parse_error_base", - "name": "parse_error_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/position.hpp", - "language": "cpp", - "size_bytes": 1891, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.950427580Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 6, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_position", - "name": "position", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "read_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/read_input.hpp", - "language": "cpp", - "size_bytes": 1713, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.952204244Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 35, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_read_input", - "name": "read_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require_apply.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/require_apply.hpp", - "language": "cpp", - "size_bytes": 419, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.953724201Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_require_apply", - "name": "require_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require_apply0.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/require_apply0.hpp", - "language": "cpp", - "size_bytes": 422, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.955166842Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_require_apply0", - "name": "require_apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rewind_mode.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/rewind_mode.hpp", - "language": "cpp", - "size_bytes": 459, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.956676507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rules.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/rules.hpp", - "language": "cpp", - "size_bytes": 6666, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.958683760Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 71, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 35, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply0", - "name": "apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 35, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at", - "name": "at", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 33, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bof", - "name": "bof", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bol", - "name": "bol", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bytes", - "name": "bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 28, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 72, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_disable", - "name": "disable", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 33, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_discard", - "name": "discard", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enable", - "name": "enable", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 33, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_eof", - "name": "eof", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_eolf", - "name": "eolf", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_everything", - "name": "everything", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_failure", - "name": "failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_apply", - "name": "if_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 50, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then_else", - "name": "if_then_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 59, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 64, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 43, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_tail", - "name": "list_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 64, - "column_end": 127, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 43, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_minus", - "name": "minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 38, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_at", - "name": "not_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 33, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt", - "name": "opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad", - "name": "pad", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 66, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad_opt", - "name": "pad_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 43, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_partial", - "name": "partial", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 48, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 48, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rematch", - "name": "rematch", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 48, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep", - "name": "rep", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 47, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_max", - "name": "rep_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 47, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_min", - "name": "rep_min", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 62, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_min_max", - "name": "rep_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 61, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_opt", - "name": "rep_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 47, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 31, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star", - "name": "star", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 48, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star_partial", - "name": "star_partial", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 48, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star_strict", - "name": "star_strict", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 48, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 49, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_strict", - "name": "strict", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 48, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_success", - "name": "success", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_until", - "name": "until", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 48, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_must", - "name": "if_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 48, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_must_else", - "name": "if_must_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 59, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_must", - "name": "list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 64, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 43, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_must", - "name": "must", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 33, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_must", - "name": "opt_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 48, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raise", - "name": "raise", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 34, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raise_message", - "name": "raise_message", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 26, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star_must", - "name": "star_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 48, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_raise_nested", - "name": "try_catch_raise_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 33, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_return_false", - "name": "try_catch_return_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 33, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_any_raise_nested", - "name": "try_catch_any_raise_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 33, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_any_return_false", - "name": "try_catch_any_return_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 33, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_std_raise_nested", - "name": "try_catch_std_raise_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_std_return_false", - "name": "try_catch_std_return_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_type_raise_nested", - "name": "try_catch_type_raise_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 53, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_type_return_false", - "name": "try_catch_type_return_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 53, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_input.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/string_input.hpp", - "language": "cpp", - "size_bytes": 1969, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.960440386Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 9, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_holder", - "name": "string_holder", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_input", - "name": "string_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tracking_mode.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/tracking_mode.hpp", - "language": "cpp", - "size_bytes": 458, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.961951936Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_list.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/type_list.hpp", - "language": "cpp", - "size_bytes": 1144, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.963540908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_type_list", - "name": "type_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_list_concat", - "name": "type_list_concat", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 40, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/utf8.hpp", - "language": "cpp", - "size_bytes": 1497, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.965149306Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 30, - "column_end": 129, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 40, - "column_end": 144, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 30, - "column_end": 125, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 40, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 30, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 30, - "column_end": 145, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "version.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/version.hpp", - "language": "cpp", - "size_bytes": 421, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.966789309Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "visit.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl/visit.hpp", - "language": "cpp", - "size_bytes": 2853, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.968790631Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_visit", - "name": "visit", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_visit", - "name": "visit", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_contains", - "name": "contains", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_filter", - "name": "filter", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_visit_list", - "name": "visit_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl.hpp", - "path": "./development/archive/development_history/external/PEGTL/include/tao/pegtl.hpp", - "language": "cpp", - "size_bytes": 1367, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.970877582Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abnf2pegtl.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/abnf2pegtl.cpp", - "language": "cpp", - "size_bytes": 30018, - "total_lines": 813, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.980211144Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_find_rule", - "name": "find_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 151, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_rule", - "name": "find_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append_char", - "name": "append_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 170, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_leading_zeroes", - "name": "remove_leading_zeroes", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_shift", - "name": "shift", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 186, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 398, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 415, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string_unwrap_seq", - "name": "to_string_unwrap_seq", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 427, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_rulename", - "name": "get_rulename", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 437, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_rulename", - "name": "get_rulename", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 459, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_gen_val", - "name": "gen_val", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 473, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 480, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 555, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 572, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 581, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_stringifier", - "name": "make_stringifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 744, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 746, - "line_end": 750, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 752, - "line_end": 762, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 813, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_one_tag", - "name": "one_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 9, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_tag", - "name": "string_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 9, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring_tag", - "name": "istring_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 9, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CRLF", - "name": "CRLF", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_cont", - "name": "comment_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 9, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 9, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c_nl", - "name": "c_nl", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_req_c_nl", - "name": "req_c_nl", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c_wsp", - "name": "c_wsp", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 9, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rulename", - "name": "rulename", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 9, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string_cont", - "name": "quoted_string_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string", - "name": "quoted_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_insensitive_string", - "name": "case_insensitive_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 9, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive_string", - "name": "case_sensitive_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 9, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_val", - "name": "char_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 9, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prose_val_cont", - "name": "prose_val_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prose_val", - "name": "prose_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_gen_val", - "name": "gen_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 12, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 12, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_value", - "name": "next_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 246, - "column_start": 12, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type", - "name": "type", - "symbol_type": "Class", - "file_path": "", - "line_start": 247, - "line_end": 247, - "column_start": 12, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_num_val_choice", - "name": "num_val_choice", - "symbol_type": "Class", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 9, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_num_val", - "name": "num_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 255, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alternation", - "name": "alternation", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 9, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option_close", - "name": "option_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 9, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_group_close", - "name": "group_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_group", - "name": "group", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 9, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_element", - "name": "element", - "symbol_type": "Class", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 9, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repeat", - "name": "repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 264, - "column_start": 9, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repetition", - "name": "repetition", - "symbol_type": "Class", - "file_path": "", - "line_start": 265, - "line_end": 265, - "column_start": 9, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_req_repetition", - "name": "req_repetition", - "symbol_type": "Class", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_and_predicate", - "name": "and_predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_predicate", - "name": "not_predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate", - "name": "predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 9, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_concatenation", - "name": "concatenation", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 9, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alternation", - "name": "alternation", - "symbol_type": "Class", - "file_path": "", - "line_start": 273, - "line_end": 273, - "column_start": 9, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_as_op", - "name": "defined_as_op", - "symbol_type": "Class", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 9, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_as", - "name": "defined_as", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 276, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rule", - "name": "rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 277, - "line_end": 277, - "column_start": 9, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rulelist", - "name": "rulelist", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 9, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 323, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 340, - "line_end": 367, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 376, - "line_end": 399, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 402, - "line_end": 416, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ccmp", - "name": "ccmp", - "symbol_type": "Class", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 488, - "line_end": 556, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stringifier", - "name": "stringifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 561, - "line_end": 582, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/analyze.cpp", - "language": "cpp", - "size_bytes": 610, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.982523017Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "calculator.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/calculator.cpp", - "language": "cpp", - "size_bytes": 10904, - "total_lines": 361, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.984979514Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stacks", - "name": "stacks", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_operators", - "name": "operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 165, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 173, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 178, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 248, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 310, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 322, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 361, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_op", - "name": "op", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stack", - "name": "stack", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 90, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stacks", - "name": "stacks", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 135, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators", - "name": "operators", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 182, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignored", - "name": "ignored", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix", - "name": "infix", - "symbol_type": "Class", - "file_path": "", - "line_start": 207, - "line_end": 249, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 255, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket", - "name": "bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_atomic", - "name": "atomic", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 277, - "line_end": 279, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 293, - "line_end": 294, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 301, - "line_end": 311, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 317, - "line_end": 323, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 326, - "line_end": 332, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "chomsky_hierarchy.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/chomsky_hierarchy.cpp", - "language": "cpp", - "size_bytes": 3876, - "total_lines": 125, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.987265197Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_type_3", - "name": "type_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_2_recursive", - "name": "type_2_recursive", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_match_n", - "name": "match_n", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_2_with_state", - "name": "type_2_with_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_2_with_state", - "name": "action_2_with_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 71, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_1", - "name": "type_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_1", - "name": "action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csv1.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/csv1.cpp", - "language": "cpp", - "size_bytes": 3260, - "total_lines": 109, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.989604935Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_item", - "name": "value_item", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_list", - "name": "value_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_line", - "name": "value_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_line", - "name": "comment_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file", - "name": "file", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 49, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csv2.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/csv2.cpp", - "language": "cpp", - "size_bytes": 5435, - "total_lines": 191, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.991822751Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_string", - "name": "print_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 140, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print", - "name": "print", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print", - "name": "print", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_tuple", - "name": "print_tuple", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 171, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_without", - "name": "string_without", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 22, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plain_value", - "name": "plain_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_value", - "name": "quoted_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 26, - "column_end": 121, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file", - "name": "file", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 26, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tuple_help", - "name": "tuple_help", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tuple_init", - "name": "tuple_init", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_result_data", - "name": "result_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 92, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 102, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 126, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_help", - "name": "print_help", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 152, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 162, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "double.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/double.hpp", - "language": "cpp", - "size_bytes": 1563, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.993782807Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_plus_minus", - "name": "plus_minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dot", - "name": "dot", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inf", - "name": "inf", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nan", - "name": "nan", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_e", - "name": "e", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_p", - "name": "p", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exponent", - "name": "exponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decimal", - "name": "decimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexadecimal", - "name": "hexadecimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "dynamic_match.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/dynamic_match.cpp", - "language": "cpp", - "size_bytes": 3098, - "total_lines": 120, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.995595806Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_long_literal_id", - "name": "long_literal_id", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_open", - "name": "long_literal_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_mark", - "name": "long_literal_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_close", - "name": "long_literal_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_body", - "name": "long_literal_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 65, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "expression.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/expression.cpp", - "language": "cpp", - "size_bytes": 20947, - "total_lines": 521, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:34.999429279Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_prefix_info", - "name": "prefix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 77, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_string_view", - "name": "match_string_view", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 132, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sorted_operator_vector", - "name": "sorted_operator_vector", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_operator_maps", - "name": "operator_maps", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 202, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 223, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 277, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 335, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 368, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 382, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 394, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 405, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 413, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 421, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 431, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 447, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 452, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 457, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 482, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 492, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 519, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_prefix_info", - "name": "prefix_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operator_maps", - "name": "operator_maps", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 209, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_view_rule", - "name": "string_view_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 211, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignored", - "name": "ignored", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 232, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket_expression", - "name": "bracket_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 253, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prefix_expression", - "name": "prefix_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 278, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix_postfix_expression", - "name": "infix_postfix_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 336, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_first_expression", - "name": "first_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 351, - "line_end": 383, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_result", - "name": "result", - "symbol_type": "Class", - "file_path": "", - "line_start": 396, - "line_end": 460, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal", - "name": "literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 466, - "line_end": 468, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 471, - "line_end": 473, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 476, - "line_end": 483, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 486, - "line_end": 493, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hello_world.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/hello_world.cpp", - "language": "cpp", - "size_bytes": 1251, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.001827190Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_prefix", - "name": "prefix", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "indent_aware.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/indent_aware.cpp", - "language": "cpp", - "size_bytes": 5841, - "total_lines": 225, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.004010852Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_entry", - "name": "entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 152, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 174, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 198, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 210, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 223, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eq", - "name": "eq", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_co", - "name": "co", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hs", - "name": "hs", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ba", - "name": "ba", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bz", - "name": "bz", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sa", - "name": "sa", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s0", - "name": "s0", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s1", - "name": "s1", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_space_line", - "name": "space_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hash_line", - "name": "hash_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trailer", - "name": "trailer", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_def_line", - "name": "def_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_line", - "name": "if_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_else_line", - "name": "else_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_let_line", - "name": "let_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_indent", - "name": "indent", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_indented", - "name": "indented", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_something", - "name": "something", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nothing", - "name": "nothing", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_entry", - "name": "entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 100, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 121, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_28", - "name": "class_28", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 139, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 153, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_31", - "name": "class_31", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 175, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 199, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_33", - "name": "class_33", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 211, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iri.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/iri.cpp", - "language": "cpp", - "size_bytes": 3324, - "total_lines": 109, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.006051775Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IRI", - "name": "IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 14, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 14, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 14, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 14, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_analyze.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_analyze.cpp", - "language": "cpp", - "size_bytes": 700, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.007730969Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_ast.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_ast.cpp", - "language": "cpp", - "size_bytes": 2220, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.009483571Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_build.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_build.cpp", - "language": "cpp", - "size_bytes": 5180, - "total_lines": 197, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.011854914Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 158, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_state", - "name": "json_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 38, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 107, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 126, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 139, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 149, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 159, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_classes.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_classes.hpp", - "language": "cpp", - "size_bytes": 4789, - "total_lines": 215, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.013904445Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array_json", - "name": "array_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean_json", - "name": "boolean_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null_json", - "name": "null_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_json", - "name": "number_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 116, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_escape", - "name": "json_escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 172, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_json", - "name": "string_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object_json", - "name": "object_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 195, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 210, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_base", - "name": "json_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_json", - "name": "array_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 79, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boolean_json", - "name": "boolean_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 95, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_null_json", - "name": "null_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 108, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number_json", - "name": "number_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 124, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_json", - "name": "string_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 188, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object_json", - "name": "object_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 211, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_count.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_count.cpp", - "language": "cpp", - "size_bytes": 1957, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.015767116Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_counter_data", - "name": "counter_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_counter_state", - "name": "counter_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_counter", - "name": "counter", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_coverage.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_coverage.cpp", - "language": "cpp", - "size_bytes": 1517, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.017647033Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_errors.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_errors.hpp", - "language": "cpp", - "size_bytes": 2598, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.019382020Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_parse.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_parse.cpp", - "language": "cpp", - "size_bytes": 1708, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.021192511Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_print_debug.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_print_debug.cpp", - "language": "cpp", - "size_bytes": 465, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.022826688Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_print_names.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_print_names.cpp", - "language": "cpp", - "size_bytes": 465, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.024398119Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_trace.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_trace.cpp", - "language": "cpp", - "size_bytes": 1465, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.026090819Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_unescape.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/json_unescape.hpp", - "language": "cpp", - "size_bytes": 1259, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.027737912Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_unescape_action", - "name": "json_unescape_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 29, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 14, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 14, - "column_end": 178, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 14, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/lua53.hpp", - "language": "cpp", - "size_bytes": 18605, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.031833422Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_short_comment", - "name": "short_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_string", - "name": "long_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sep", - "name": "sep", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seps", - "name": "seps", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 3, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_and", - "name": "str_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_break", - "name": "str_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_do", - "name": "str_do", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_else", - "name": "str_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_elseif", - "name": "str_elseif", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_end", - "name": "str_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_false", - "name": "str_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_for", - "name": "str_for", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_function", - "name": "str_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_goto", - "name": "str_goto", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_if", - "name": "str_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_in", - "name": "str_in", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_local", - "name": "str_local", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_nil", - "name": "str_nil", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_not", - "name": "str_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_or", - "name": "str_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_repeat", - "name": "str_repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_return", - "name": "str_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_then", - "name": "str_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_true", - "name": "str_true", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_until", - "name": "str_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_while", - "name": "str_while", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key", - "name": "key", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor_keyword", - "name": "sor_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 3, - "column_end": 253, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_and", - "name": "key_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_break", - "name": "key_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_do", - "name": "key_do", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_else", - "name": "key_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_elseif", - "name": "key_elseif", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_end", - "name": "key_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_false", - "name": "key_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_for", - "name": "key_for", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_function", - "name": "key_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_goto", - "name": "key_goto", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_if", - "name": "key_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_in", - "name": "key_in", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_local", - "name": "key_local", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_nil", - "name": "key_nil", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_not", - "name": "key_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_or", - "name": "key_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_repeat", - "name": "key_repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_return", - "name": "key_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_then", - "name": "key_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_true", - "name": "key_true", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_until", - "name": "key_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_while", - "name": "key_while", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_keyword", - "name": "keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad", - "name": "pad", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_single", - "name": "single", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_spaces", - "name": "spaces", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 3, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexbyte", - "name": "hexbyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decbyte", - "name": "decbyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unichar", - "name": "unichar", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_regular", - "name": "regular", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_short_string", - "name": "short_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 3, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal_string", - "name": "literal_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 3, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exponent", - "name": "exponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 3, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_three", - "name": "numeral_three", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 3, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_two", - "name": "numeral_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 3, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_one", - "name": "numeral_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decimal", - "name": "decimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexadecimal", - "name": "hexadecimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 3, - "column_end": 125, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral", - "name": "numeral", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_label_statement", - "name": "label_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 3, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_goto_statement", - "name": "goto_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 199, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement", - "name": "statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 3, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_list", - "name": "name_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 204, - "line_end": 204, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_list_must", - "name": "name_list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_list_must", - "name": "expr_list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement_return", - "name": "statement_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 208, - "line_end": 208, - "column_start": 3, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement_list", - "name": "statement_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 3, - "column_end": 149, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_op_one", - "name": "op_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_op_two", - "name": "op_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_one", - "name": "table_field_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 218, - "line_end": 218, - "column_start": 3, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_two", - "name": "table_field_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 3, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field", - "name": "table_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 220, - "line_end": 220, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_list", - "name": "table_field_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 221, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_constructor", - "name": "table_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list_one", - "name": "parameter_list_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 3, - "column_end": 119, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list", - "name": "parameter_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_body", - "name": "function_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 3, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_literal", - "name": "function_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket_expr", - "name": "bracket_expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 3, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_args_one", - "name": "function_args_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_args", - "name": "function_args", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail_one", - "name": "variable_tail_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 3, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail_two", - "name": "variable_tail_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 3, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail", - "name": "variable_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_tail_one", - "name": "function_call_tail_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 3, - "column_end": 156, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_tail", - "name": "function_call_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 240, - "line_end": 240, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_head_one", - "name": "variable_head_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_head", - "name": "variable_head", - "symbol_type": "Class", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_head", - "name": "function_call_head", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable", - "name": "variable", - "symbol_type": "Class", - "file_path": "", - "line_start": 247, - "line_end": 247, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call", - "name": "function_call", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 3, - "column_end": 153, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_left_assoc", - "name": "left_assoc", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 251, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_right_assoc", - "name": "right_assoc", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unary_operators", - "name": "unary_operators", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 258, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_ten", - "name": "expr_ten", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 3, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_thirteen", - "name": "expr_thirteen", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 3, - "column_end": 145, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_twelve", - "name": "expr_twelve", - "symbol_type": "Class", - "file_path": "", - "line_start": 262, - "line_end": 270, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_eleven", - "name": "expr_eleven", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unary_apply", - "name": "unary_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 3, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_ten", - "name": "expr_ten", - "symbol_type": "Class", - "file_path": "", - "line_start": 273, - "line_end": 273, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_nine", - "name": "operators_nine", - "symbol_type": "Class", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_nine", - "name": "expr_nine", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_eight", - "name": "operators_eight", - "symbol_type": "Class", - "file_path": "", - "line_start": 279, - "line_end": 280, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_eight", - "name": "expr_eight", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_seven", - "name": "expr_seven", - "symbol_type": "Class", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_six", - "name": "operators_six", - "symbol_type": "Class", - "file_path": "", - "line_start": 283, - "line_end": 284, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_six", - "name": "expr_six", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_five", - "name": "expr_five", - "symbol_type": "Class", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_four", - "name": "expr_four", - "symbol_type": "Class", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_three", - "name": "expr_three", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_two", - "name": "operators_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 289, - "line_end": 294, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_two", - "name": "expr_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_one", - "name": "expr_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 296, - "line_end": 296, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 297, - "line_end": 297, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_do_statement", - "name": "do_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 299, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_while_statement", - "name": "while_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 3, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repeat_statement", - "name": "repeat_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 301, - "line_end": 301, - "column_start": 3, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at_elseif_else_end", - "name": "at_elseif_else_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 303, - "line_end": 303, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_elseif_statement", - "name": "elseif_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 304, - "line_end": 304, - "column_start": 3, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_else_statement", - "name": "else_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_statement", - "name": "if_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 306, - "column_start": 3, - "column_end": 209, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement_one", - "name": "for_statement_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 308, - "line_end": 308, - "column_start": 3, - "column_end": 203, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement_two", - "name": "for_statement_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 309, - "line_end": 309, - "column_start": 3, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement", - "name": "for_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 310, - "line_end": 310, - "column_start": 3, - "column_end": 159, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignment_variable_list", - "name": "assignment_variable_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignments_one", - "name": "assignments_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignments", - "name": "assignments", - "symbol_type": "Class", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_name", - "name": "function_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 315, - "line_end": 315, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_definition", - "name": "function_definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_function", - "name": "local_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 318, - "line_end": 318, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_variables", - "name": "local_variables", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 319, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_statement", - "name": "local_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 320, - "line_end": 320, - "column_start": 3, - "column_end": 111, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semicolon", - "name": "semicolon", - "symbol_type": "Class", - "file_path": "", - "line_start": 322, - "line_end": 322, - "column_start": 3, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement", - "name": "statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 323, - "line_end": 335, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 337, - "line_end": 337, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53_analyze.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/lua53_analyze.cpp", - "language": "cpp", - "size_bytes": 709, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.034001882Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53_parse.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/lua53_parse.cpp", - "language": "cpp", - "size_bytes": 749, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.035596658Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "modulus_match.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/modulus_match.cpp", - "language": "cpp", - "size_bytes": 1093, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.037233565Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_rule", - "name": "my_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/parse_tree.cpp", - "language": "cpp", - "size_bytes": 5492, - "total_lines": 180, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.039234518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 9, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 9, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 118, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 129, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 139, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 159, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_integer", - "name": "integer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable", - "name": "variable", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_minus", - "name": "minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_multiply", - "name": "multiply", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_divide", - "name": "divide", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_open_bracket", - "name": "open_bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_close_bracket", - "name": "close_bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracketed", - "name": "bracketed", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_product", - "name": "product", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rearrange", - "name": "rearrange", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 80, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cache", - "name": "cache", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 140, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_node", - "name": "node", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 160, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree_user_state.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/parse_tree_user_state.cpp", - "language": "cpp", - "size_bytes": 794, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.040953112Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_user_state", - "name": "user_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_work", - "name": "work", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 20, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "proto3.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/proto3.cpp", - "language": "cpp", - "size_bytes": 1076, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.042571266Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "proto3.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/proto3.hpp", - "language": "cpp", - "size_bytes": 8661, - "total_lines": 146, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.046003166Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_comment_sl", - "name": "comment_sl", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_ml", - "name": "comment_ml", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sp", - "name": "sp", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sps", - "name": "sps", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comma", - "name": "comma", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dot", - "name": "dot", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_equ", - "name": "equ", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semi", - "name": "semi", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message", - "name": "message", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extend", - "name": "extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident_first", - "name": "ident_first", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident_other", - "name": "ident_other", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident", - "name": "ident", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_ident", - "name": "full_ident", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_lit", - "name": "hex_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oct_lit", - "name": "oct_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dec_lit", - "name": "dec_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int_lit", - "name": "int_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_dec", - "name": "enum_dec", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_int", - "name": "enum_int", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sign", - "name": "sign", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_float_lit", - "name": "float_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 52, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bool_lit", - "name": "bool_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_escape", - "name": "hex_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oct_escape", - "name": "oct_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_escape", - "name": "char_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escape", - "name": "escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_value", - "name": "char_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_impl", - "name": "str_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_lit", - "name": "str_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_constant", - "name": "constant", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option_name", - "name": "option_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 118, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bool_type", - "name": "bool_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bytes_type", - "name": "bytes_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_double_type", - "name": "double_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_float_type", - "name": "float_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_type", - "name": "string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int32_type", - "name": "int32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int64_type", - "name": "int64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sint32_type", - "name": "sint32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sint64_type", - "name": "sint64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uint32_type", - "name": "uint32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uint64_type", - "name": "uint64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fixed32_type", - "name": "fixed32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fixed64_type", - "name": "fixed64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sfixed32_type", - "name": "sfixed32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sfixed64_type", - "name": "sfixed64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_builtin_type", - "name": "builtin_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 3, - "column_end": 228, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_type", - "name": "defined_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type", - "name": "type", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_option", - "name": "field_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_options", - "name": "field_options", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 3, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_name", - "name": "field_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_number", - "name": "field_number", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field", - "name": "field", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 3, - "column_end": 237, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_name", - "name": "oneof_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_field", - "name": "oneof_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_body", - "name": "oneof_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof", - "name": "oneof", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_type", - "name": "key_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 217, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_map_name", - "name": "map_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_map_field", - "name": "map_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 3, - "column_end": 214, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 3, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_names", - "name": "field_names", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reserved", - "name": "reserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_name", - "name": "enum_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_value_option", - "name": "enum_value_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_field", - "name": "enum_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 168, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_body", - "name": "enum_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 3, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_def", - "name": "enum_def", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_thing", - "name": "message_thing", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_body", - "name": "message_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 3, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message", - "name": "message", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extend", - "name": "extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_package", - "name": "package", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 3, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_option", - "name": "import_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import", - "name": "import", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 3, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_name", - "name": "rpc_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_type", - "name": "rpc_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 3, - "column_end": 134, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_options", - "name": "rpc_options", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc", - "name": "rpc", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 3, - "column_end": 181, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_service_name", - "name": "service_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_service", - "name": "service", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 3, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_body", - "name": "body", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quote", - "name": "quote", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_head", - "name": "head", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 3, - "column_end": 150, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_proto", - "name": "proto", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "random_order.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/random_order.cpp", - "language": "cpp", - "size_bytes": 3470, - "total_lines": 109, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.048351975Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 51, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 69, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rnd", - "name": "rnd", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rnd", - "name": "rnd", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rnd", - "name": "rnd", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rnd_opt", - "name": "rnd_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "recover.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/recover.cpp", - "language": "cpp", - "size_bytes": 3851, - "total_lines": 131, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.050447860Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 118, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_skipping", - "name": "skipping", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_recoverable", - "name": "recoverable", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_sum", - "name": "expr_sum", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_identifier", - "name": "expr_identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_number", - "name": "expr_number", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_braced", - "name": "expr_braced", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_value", - "name": "expr_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_power", - "name": "expr_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_prod", - "name": "expr_prod", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_sum", - "name": "expr_sum", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_term", - "name": "term", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr", - "name": "expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_recoverable_expr", - "name": "recoverable_expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_grammar", - "name": "my_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 60, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_found", - "name": "found", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 11, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_control", - "name": "my_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sum.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/sum.cpp", - "language": "cpp", - "size_bytes": 1627, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.052206129Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_padded_double", - "name": "padded_double", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_double_list", - "name": "double_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "symbol_table.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/symbol_table.cpp", - "language": "cpp", - "size_bytes": 3432, - "total_lines": 119, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.054099531Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semi", - "name": "semi", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blank0", - "name": "blank0", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blanks", - "name": "blanks", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_equals", - "name": "equals", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_definition", - "name": "definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignment", - "name": "assignment", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_something", - "name": "something", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 56, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 88, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 102, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "s_expression.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/s_expression.cpp", - "language": "cpp", - "size_bytes": 3272, - "total_lines": 106, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.056102708Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_hash_comment", - "name": "hash_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_comment", - "name": "list_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_include", - "name": "read_include", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hash_include", - "name": "hash_include", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hashed", - "name": "hashed", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_symbol", - "name": "symbol", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_atom", - "name": "atom", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_anything", - "name": "anything", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_normal", - "name": "normal", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_anything", - "name": "anything", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_main", - "name": "main", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 53, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "token_input.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/token_input.cpp", - "language": "cpp", - "size_bytes": 7084, - "total_lines": 285, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.058367436Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 6, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 6, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_auto_rewind", - "name": "auto_rewind", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 151, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 171, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 176, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 181, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 211, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 255, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 265, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_token_action_input", - "name": "token_action_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 193, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token_type", - "name": "token_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 212, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_token", - "name": "my_token", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_grammar", - "name": "my_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unescape.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/unescape.cpp", - "language": "cpp", - "size_bytes": 2560, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.060299417Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_escaped_x", - "name": "escaped_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_u", - "name": "escaped_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_U", - "name": "escaped_U", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_c", - "name": "escaped_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal", - "name": "literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_padded", - "name": "padded", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 14, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 14, - "column_end": 143, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/uri.cpp", - "language": "cpp", - "size_bytes": 3273, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.062159254Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_URI", - "name": "URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 14, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 14, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 14, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 14, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_print_debug.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/uri_print_debug.cpp", - "language": "cpp", - "size_bytes": 639, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.063844358Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_print_names.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/uri_print_names.cpp", - "language": "cpp", - "size_bytes": 639, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.065669682Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_trace.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/example/pegtl/uri_trace.cpp", - "language": "cpp", - "size_bytes": 877, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.067298518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_one.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/actions_one.cpp", - "language": "cpp", - "size_bytes": 3376, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.072081163Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_result", - "name": "test_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_fiz", - "name": "fiz", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_three.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/actions_three.cpp", - "language": "cpp", - "size_bytes": 3326, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.073994170Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_bool_true", - "name": "apply_bool_true", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_bool_false", - "name": "apply_bool_false", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_bool_true", - "name": "apply0_bool_true", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_bool_false", - "name": "apply0_bool_false", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 104, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 114, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply_bool_action", - "name": "apply_bool_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 41, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply0_bool_action", - "name": "apply0_bool_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 75, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_two.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/actions_two.cpp", - "language": "cpp", - "size_bytes": 3468, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.075991731Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_state1", - "name": "state1", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_state_test", - "name": "state_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_test", - "name": "apply0_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 90, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count_test", - "name": "count_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 129, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state1", - "name": "state1", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fobble", - "name": "fobble", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fibble", - "name": "fibble", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action1", - "name": "action1", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 36, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action0", - "name": "action0", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_count_action", - "name": "count_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_enable.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/action_enable.cpp", - "language": "cpp", - "size_bytes": 1395, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.077796069Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BCB", - "name": "BCB", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ABCBA", - "name": "ABCBA", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_match.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/action_match.cpp", - "language": "cpp", - "size_bytes": 3041, - "total_lines": 117, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.079559869Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 113, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_state", - "name": "remove_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state_one", - "name": "state_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_inner", - "name": "grammar_inner", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_c", - "name": "grammar_one_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_b", - "name": "grammar_one_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_a", - "name": "grammar_one_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_b", - "name": "action_one_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 52, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_t", - "name": "action_one_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 56, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_a", - "name": "action_one_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 60, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 83, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "argv_input.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/argv_input.cpp", - "language": "cpp", - "size_bytes": 692, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.081369054Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_classes.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_classes.cpp", - "language": "cpp", - "size_bytes": 6956, - "total_lines": 116, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.084169223Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 112, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_eol.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_eol.cpp", - "language": "cpp", - "size_bytes": 6483, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.086983215Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_eolf.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_eolf.cpp", - "language": "cpp", - "size_bytes": 6541, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.090090544Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_forty_two.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_forty_two.cpp", - "language": "cpp", - "size_bytes": 1816, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.092121648Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_identifier.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_identifier.cpp", - "language": "cpp", - "size_bytes": 1641, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.093940663Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_istring.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_istring.cpp", - "language": "cpp", - "size_bytes": 2756, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.096063570Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_keyword.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_keyword.cpp", - "language": "cpp", - "size_bytes": 1658, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.098034867Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_shebang.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_shebang.cpp", - "language": "cpp", - "size_bytes": 1813, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.099850889Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_string.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_string.cpp", - "language": "cpp", - "size_bytes": 2653, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.102096623Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_three.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_three.cpp", - "language": "cpp", - "size_bytes": 1296, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.103936327Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_two.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/ascii_two.cpp", - "language": "cpp", - "size_bytes": 1004, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.105633220Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "buffer_input.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/buffer_input.cpp", - "language": "cpp", - "size_bytes": 2687, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.107944702Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_state.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/change_action_and_state.cpp", - "language": "cpp", - "size_bytes": 2536, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.109795848Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_S", - "name": "S", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 111, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_1", - "name": "my_action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_2", - "name": "my_action_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 69, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 79, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_states.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/change_action_and_states.cpp", - "language": "cpp", - "size_bytes": 2444, - "total_lines": 105, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.111604707Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 101, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_1", - "name": "my_action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_2", - "name": "my_action_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_state.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/change_state.cpp", - "language": "cpp", - "size_bytes": 2252, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.113360879Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_S", - "name": "S", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 94, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_states.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/change_states.cpp", - "language": "cpp", - "size_bytes": 2012, - "total_lines": 82, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.115323717Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "check_bytes.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/check_bytes.cpp", - "language": "cpp", - "size_bytes": 1272, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.117120755Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contains.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contains.cpp", - "language": "cpp", - "size_bytes": 661, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.119107455Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_alphabet.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_alphabet.cpp", - "language": "cpp", - "size_bytes": 2636, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.120855348Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_analyze.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_analyze.cpp", - "language": "cpp", - "size_bytes": 8093, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.123738081Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 227, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_strange", - "name": "strange", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 9, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 9, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 9, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rec", - "name": "rec", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_var", - "name": "var", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fun", - "name": "fun", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fun", - "name": "fun", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_var", - "name": "var", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 9, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 9, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 9, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 9, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 9, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 9, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 9, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 210, - "column_start": 9, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 9, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_control_action.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_control_action.cpp", - "language": "cpp", - "size_bytes": 4050, - "total_lines": 169, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.126030084Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 126, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 132, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 139, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 165, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dummy_action", - "name": "dummy_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_first_rule", - "name": "first_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_second_rule", - "name": "second_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 83, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 108, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 140, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_coverage.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_coverage.cpp", - "language": "cpp", - "size_bytes": 3248, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.128296140Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_function.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_function.cpp", - "language": "cpp", - "size_bytes": 865, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.129934521Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_func1", - "name": "func1", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rule1", - "name": "rule1", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_http.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_http.cpp", - "language": "cpp", - "size_bytes": 2756, - "total_lines": 105, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.131942786Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_header", - "name": "test_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_chunked", - "name": "test_chunked", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_chunked_action", - "name": "chunked_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_if_then.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_if_then.cpp", - "language": "cpp", - "size_bytes": 980, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.133683514Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_instantiate.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_instantiate.cpp", - "language": "cpp", - "size_bytes": 1702, - "total_lines": 73, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.135352362Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_class", - "name": "test_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_integer.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_integer.cpp", - "language": "cpp", - "size_bytes": 11553, - "total_lines": 264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.138758262Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexical_cast", - "name": "lexical_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 107, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 258, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_int_action", - "name": "int_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_iri.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_iri.cpp", - "language": "cpp", - "size_bytes": 3469, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.140954871Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_json.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_json.cpp", - "language": "cpp", - "size_bytes": 9989, - "total_lines": 124, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.143769621Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 120, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_limit_depth.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_limit_depth.cpp", - "language": "cpp", - "size_bytes": 1470, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.145697893Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_recursive", - "name": "test_recursive", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_parse_tree.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_parse_tree.cpp", - "language": "cpp", - "size_bytes": 5871, - "total_lines": 154, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.147951319Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 150, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_E", - "name": "E", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_F", - "name": "F", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D2", - "name": "D2", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D2", - "name": "D2", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_parse_tree_to_dot.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_parse_tree_to_dot.cpp", - "language": "cpp", - "size_bytes": 1125, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.149764518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_partial_trace.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_partial_trace.cpp", - "language": "cpp", - "size_bytes": 915, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.151450854Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_inner", - "name": "inner", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer", - "name": "outer", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_partial_action", - "name": "partial_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 24, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 14, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_predicates.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_predicates.cpp", - "language": "cpp", - "size_bytes": 5220, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.154116492Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_print.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_print.cpp", - "language": "cpp", - "size_bytes": 728, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.156088127Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_raw_string.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_raw_string.cpp", - "language": "cpp", - "size_bytes": 6161, - "total_lines": 142, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.158539999Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_data", - "name": "verify_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_fail", - "name": "verify_fail", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 138, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raction", - "name": "raction", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_qaction", - "name": "qaction", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rgrammar", - "name": "rgrammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_qgrammar", - "name": "qgrammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_remove_first_state.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_remove_first_state.cpp", - "language": "cpp", - "size_bytes": 2393, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.160510443Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control_impl", - "name": "control_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 71, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_control", - "name": "test_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_remove_last_states.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_remove_last_states.cpp", - "language": "cpp", - "size_bytes": 2399, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.162377865Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 99, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control_impl", - "name": "control_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 71, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_control", - "name": "test_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_rep_one_min_max.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_rep_one_min_max.cpp", - "language": "cpp", - "size_bytes": 2118, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.164348457Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_rep_string.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_rep_string.cpp", - "language": "cpp", - "size_bytes": 2828, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.166465801Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_separated_seq.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_separated_seq.cpp", - "language": "cpp", - "size_bytes": 799, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.168310994Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 25, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_state_control.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_state_control.cpp", - "language": "cpp", - "size_bytes": 11344, - "total_lines": 241, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.171946041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_nested", - "name": "raise_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 130, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 235, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_entry", - "name": "test_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_state", - "name": "test_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 104, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 107, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 131, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 151, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_nested", - "name": "test_nested", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 154, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_to_string.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_to_string.cpp", - "language": "cpp", - "size_bytes": 1446, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.174242342Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_trace1.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_trace1.cpp", - "language": "cpp", - "size_bytes": 1072, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.175944260Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_trace2.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_trace2.cpp", - "language": "cpp", - "size_bytes": 2843, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.177830835Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_trace_action", - "name": "trace_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_unescape.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_unescape.cpp", - "language": "cpp", - "size_bytes": 5973, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.180087926Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_data", - "name": "verify_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_fail", - "name": "verify_fail", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 128, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_escaped_c", - "name": "escaped_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_u", - "name": "escaped_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_U", - "name": "escaped_U", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_j", - "name": "escaped_j", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_x", - "name": "escaped_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unstring", - "name": "unstring", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unaction", - "name": "unaction", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 29, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 14, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_uri.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/contrib_uri.cpp", - "language": "cpp", - "size_bytes": 3044, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.182111077Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control_unwind.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/control_unwind.cpp", - "language": "cpp", - "size_bytes": 1430, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.183837289Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_r", - "name": "r", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c", - "name": "c", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "data_cstring.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/data_cstring.cpp", - "language": "cpp", - "size_bytes": 1078, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.206638300Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "demangle.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/demangle.cpp", - "language": "cpp", - "size_bytes": 1622, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.208437951Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test", - "name": "test", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/discard_input.cpp", - "language": "cpp", - "size_bytes": 3066, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.210805943Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_n", - "name": "n", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_f", - "name": "f", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s", - "name": "s", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 29, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 14, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 14, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 14, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_control.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/enable_control.cpp", - "language": "cpp", - "size_bytes": 1689, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.212767306Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_r", - "name": "r", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error_message.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/error_message.cpp", - "language": "cpp", - "size_bytes": 1368, - "total_lines": 56, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.214440916Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_b", - "name": "b", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error_message_2.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/error_message_2.cpp", - "language": "cpp", - "size_bytes": 1036, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.216098439Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_b", - "name": "b", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error_message_3.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/error_message_3.cpp", - "language": "cpp", - "size_bytes": 1067, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.217652593Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_b", - "name": "b", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_cstream.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/file_cstream.cpp", - "language": "cpp", - "size_bytes": 980, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.219682729Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_file.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/file_file.cpp", - "language": "cpp", - "size_bytes": 420, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.221833090Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 13, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_istream.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/file_istream.cpp", - "language": "cpp", - "size_bytes": 1310, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.223478108Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_mmap.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/file_mmap.cpp", - "language": "cpp", - "size_bytes": 641, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.225023803Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_read.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/file_read.cpp", - "language": "cpp", - "size_bytes": 755, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.226648235Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_open_input", - "name": "open_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_open_input", - "name": "open_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "icu_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/icu_general.cpp", - "language": "cpp", - "size_bytes": 756, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.228740432Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_endian.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/internal_endian.cpp", - "language": "cpp", - "size_bytes": 7036, - "total_lines": 85, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.231021701Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_file_mapper.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/internal_file_mapper.cpp", - "language": "cpp", - "size_bytes": 1622, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.232888660Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_file_opener.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/internal_file_opener.cpp", - "language": "cpp", - "size_bytes": 1003, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.234438547Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_bytes.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/limit_bytes.cpp", - "language": "cpp", - "size_bytes": 1272, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.236197848Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/main.hpp", - "language": "cpp", - "size_bytes": 687, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.237830298Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_error.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/parse_error.cpp", - "language": "cpp", - "size_bytes": 1657, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.239513400Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_string_t.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/pegtl_string_t.cpp", - "language": "cpp", - "size_bytes": 1988, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.241498308Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foobar", - "name": "foobar", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/position.cpp", - "language": "cpp", - "size_bytes": 7749, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.244428522Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input_t", - "name": "buffer_input_t", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_matches_lf", - "name": "test_matches_lf", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_matches_other", - "name": "test_matches_other", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_mismatch", - "name": "test_mismatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_nested_asserts", - "name": "test_nested_asserts", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 109, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_nested", - "name": "test_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 128, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_inputerator", - "name": "test_inputerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 144, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 215, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_buffer_input_t", - "name": "buffer_input_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer_grammar", - "name": "outer_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inner_grammar", - "name": "inner_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer_action", - "name": "outer_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 74, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 95, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "restart_input.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/restart_input.cpp", - "language": "cpp", - "size_bytes": 1172, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.246409185Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_lazy", - "name": "test_lazy", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_eager", - "name": "test_eager", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "result_type.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/result_type.hpp", - "language": "cpp", - "size_bytes": 920, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.248107183Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_action.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_action.cpp", - "language": "cpp", - "size_bytes": 826, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.249822049Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_apply.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_apply.cpp", - "language": "cpp", - "size_bytes": 3021, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.251774025Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 21, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 94, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_apply0.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_apply0.cpp", - "language": "cpp", - "size_bytes": 2668, - "total_lines": 93, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.253772946Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 49, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_at.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_at.cpp", - "language": "cpp", - "size_bytes": 2103, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.255914626Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at_action", - "name": "at_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bof.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_bof.cpp", - "language": "cpp", - "size_bytes": 1275, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.257752097Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bol.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_bol.cpp", - "language": "cpp", - "size_bytes": 1176, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.259535219Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bytes.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_bytes.cpp", - "language": "cpp", - "size_bytes": 1740, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.261473847Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_control.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_control.cpp", - "language": "cpp", - "size_bytes": 828, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.263300235Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_disable.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_disable.cpp", - "language": "cpp", - "size_bytes": 686, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.264997170Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_discard.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_discard.cpp", - "language": "cpp", - "size_bytes": 791, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.266619495Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_enable.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_enable.cpp", - "language": "cpp", - "size_bytes": 680, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.268318821Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_eof.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_eof.cpp", - "language": "cpp", - "size_bytes": 853, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.269951534Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_everything.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_everything.cpp", - "language": "cpp", - "size_bytes": 894, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.271543657Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_failure.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_failure.cpp", - "language": "cpp", - "size_bytes": 855, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.273123557Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_apply.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_if_apply.cpp", - "language": "cpp", - "size_bytes": 3971, - "total_lines": 127, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.275198425Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 54, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 123, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 70, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 81, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_must.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_if_must.cpp", - "language": "cpp", - "size_bytes": 3907, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.277920941Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 53, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_must_else.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_if_must_else.cpp", - "language": "cpp", - "size_bytes": 609, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.279582994Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_then_else.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_if_then_else.cpp", - "language": "cpp", - "size_bytes": 549, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.281153267Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 15, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_list.cpp", - "language": "cpp", - "size_bytes": 4295, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.283796940Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list_must.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_list_must.cpp", - "language": "cpp", - "size_bytes": 4448, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.286506656Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list_tail.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_list_tail.cpp", - "language": "cpp", - "size_bytes": 4973, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.289452335Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_minus.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_minus.cpp", - "language": "cpp", - "size_bytes": 3690, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.292211955Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_must.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_must.cpp", - "language": "cpp", - "size_bytes": 884, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.294087257Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_not_at.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_not_at.cpp", - "language": "cpp", - "size_bytes": 2350, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.296084608Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at_action", - "name": "at_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_opt.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_opt.cpp", - "language": "cpp", - "size_bytes": 3671, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.298724898Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 67, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_opt_must.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_opt_must.cpp", - "language": "cpp", - "size_bytes": 3548, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.301249135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_pad.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_pad.cpp", - "language": "cpp", - "size_bytes": 3469, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.303867365Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_pad_opt.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_pad_opt.cpp", - "language": "cpp", - "size_bytes": 2409, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.306126321Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_partial.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_partial.cpp", - "language": "cpp", - "size_bytes": 3707, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.308721795Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 14, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_plus.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_plus.cpp", - "language": "cpp", - "size_bytes": 2990, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.311337202Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_raise.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_raise.cpp", - "language": "cpp", - "size_bytes": 1226, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.313280613Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rematch.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rematch.cpp", - "language": "cpp", - "size_bytes": 9243, - "total_lines": 116, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.317731764Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 112, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rep.cpp", - "language": "cpp", - "size_bytes": 5910, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.321267108Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 73, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_max.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rep_max.cpp", - "language": "cpp", - "size_bytes": 3996, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.324124240Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_min.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rep_min.cpp", - "language": "cpp", - "size_bytes": 2504, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.326720379Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_min_max.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rep_min_max.cpp", - "language": "cpp", - "size_bytes": 3473, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.329216930Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_opt.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_rep_opt.cpp", - "language": "cpp", - "size_bytes": 2784, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.331540675Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_require.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_require.cpp", - "language": "cpp", - "size_bytes": 2344, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.333568504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_seq.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_seq.cpp", - "language": "cpp", - "size_bytes": 646, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.335234402Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_sor.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_sor.cpp", - "language": "cpp", - "size_bytes": 3139, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.337650507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_star.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_star.cpp", - "language": "cpp", - "size_bytes": 2540, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.340007038Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_star_must.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_star_must.cpp", - "language": "cpp", - "size_bytes": 2403, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.342321070Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_star_partial.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_star_partial.cpp", - "language": "cpp", - "size_bytes": 2807, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.344615718Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_state.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_state.cpp", - "language": "cpp", - "size_bytes": 1139, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.346500101Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_state_state", - "name": "test_state_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 20, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_state_state", - "name": "test_state_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_success.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_success.cpp", - "language": "cpp", - "size_bytes": 791, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.348125356Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_try_catch_raise_nested.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_try_catch_raise_nested.cpp", - "language": "cpp", - "size_bytes": 1425, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.349798250Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_nested", - "name": "verify_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_try_catch_return_false.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_try_catch_return_false.cpp", - "language": "cpp", - "size_bytes": 960, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.351420745Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_until.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/rule_until.cpp", - "language": "cpp", - "size_bytes": 7717, - "total_lines": 123, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.354957416Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 119, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_rule", - "name": "my_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/test.hpp", - "language": "cpp", - "size_bytes": 3511, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.356817307Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_empty.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/test_empty.cpp", - "language": "cpp", - "size_bytes": 352, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.358469414Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 10, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_result.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/test_result.cpp", - "language": "cpp", - "size_bytes": 1021, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.360004015Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_setup.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/test_setup.cpp", - "language": "cpp", - "size_bytes": 1417, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.361707829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint16_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/uint16_general.cpp", - "language": "cpp", - "size_bytes": 14974, - "total_lines": 177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.365710294Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 173, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint32_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/uint32_general.cpp", - "language": "cpp", - "size_bytes": 17675, - "total_lines": 182, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.370614870Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 178, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint64_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/uint64_general.cpp", - "language": "cpp", - "size_bytes": 22313, - "total_lines": 186, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.375958494Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 182, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint8_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/uint8_general.cpp", - "language": "cpp", - "size_bytes": 25506, - "total_lines": 250, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.383128313Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 246, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/utf16_general.cpp", - "language": "cpp", - "size_bytes": 10644, - "total_lines": 156, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.386997374Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_u16s", - "name": "u16s", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u16s_be", - "name": "u16s_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u16s_le", - "name": "u16s_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16", - "name": "test_utf16", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 69, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16_be", - "name": "test_utf16_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 107, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16_le", - "name": "test_utf16_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 145, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 152, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/utf32_general.cpp", - "language": "cpp", - "size_bytes": 8607, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.390187918Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_u32s", - "name": "u32s", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u32s_be", - "name": "u32s_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u32s_le", - "name": "u32s_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32", - "name": "test_utf32", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32_be", - "name": "test_utf32_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 95, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32_le", - "name": "test_utf32_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 124, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 131, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8_general.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/utf8_general.cpp", - "language": "cpp", - "size_bytes": 21927, - "total_lines": 264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.395654991Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 260, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_char.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_char.hpp", - "language": "cpp", - "size_bytes": 1009, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.397864726Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_char", - "name": "verify_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_char", - "name": "verify_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_file.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_file.hpp", - "language": "cpp", - "size_bytes": 4043, - "total_lines": 139, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.399833453Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_file", - "name": "verify_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 135, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_action", - "name": "file_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_control", - "name": "file_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_ifmt.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_ifmt.hpp", - "language": "cpp", - "size_bytes": 2648, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.402244439Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_ifmt", - "name": "verify_ifmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_impl.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_impl.hpp", - "language": "cpp", - "size_bytes": 2178, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.404072671Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_impl_two", - "name": "verify_impl_two", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_impl_one", - "name": "verify_impl_one", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_meta.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_meta.hpp", - "language": "cpp", - "size_bytes": 1603, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.405807837Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_meta", - "name": "verify_meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_analyze", - "name": "verify_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_rule.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_rule.hpp", - "language": "cpp", - "size_bytes": 3467, - "total_lines": 82, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.407924507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 26, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 34, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_rule", - "name": "verify_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_only", - "name": "verify_only", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_verify_action_impl", - "name": "verify_action_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_verify_action_impl0", - "name": "verify_action_impl0", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_seqs.hpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/verify_seqs.hpp", - "language": "cpp", - "size_bytes": 4886, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.411030096Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_seqs", - "name": "verify_seqs", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "visit.cpp", - "path": "./development/archive/development_history/external/PEGTL/src/test/pegtl/visit.cpp", - "language": "cpp", - "size_bytes": 783, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.413094681Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_visitor", - "name": "visitor", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash.py", - "path": "./development/archive/development_history/legacy/nyash.py", - "language": "python", - "size_bytes": 12652, - "total_lines": 434, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.419319524Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 15, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___repr__", - "name": "__repr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 18, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 73, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 98, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 102, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 123, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 127, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 131, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_current", - "name": "current", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 148, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_box", - "name": "parse_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 166, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 175, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_block", - "name": "parse_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 193, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_init", - "name": "parse_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 204, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_fini", - "name": "parse_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 215, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_declaration", - "name": "parse_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 229, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 245, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_assignment", - "name": "parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 252, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_expr", - "name": "parse_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 262, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_term", - "name": "parse_term", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 272, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_factor", - "name": "parse_factor", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 285, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 301, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_function", - "name": "eval_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 304, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_block", - "name": "eval_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 317, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_init", - "name": "eval_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 324, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_fini", - "name": "eval_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 328, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_statement", - "name": "eval_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 336, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_expr", - "name": "eval_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 356, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run_nyash", - "name": "run_nyash", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 372, - "column_start": 0, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 18, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__repr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 77, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoxNode", - "name": "BoxNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionNode", - "name": "FunctionNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 88, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BlockNode", - "name": "BlockNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 94, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_InitNode", - "name": "InitNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 0, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FiniNode", - "name": "FiniNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_DeclNode", - "name": "DeclNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AssignNode", - "name": "AssignNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 113, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BinOpNode", - "name": "BinOpNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NumberNode", - "name": "NumberNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VarNode", - "name": "VarNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintNode", - "name": "PrintNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Parser", - "name": "Parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 285, - "column_start": 0, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "current", - "consume", - "parse", - "parse_box", - "parse_function", - "parse_block", - "parse_init", - "parse_fini", - "parse_declaration", - "parse_statement", - "parse_print", - "parse_assignment", - "parse_expr", - "parse_term", - "parse_factor" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Evaluator", - "name": "Evaluator", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 356, - "column_start": 0, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "eval", - "eval_function", - "eval_block", - "eval_init", - "eval_fini", - "eval_statement", - "eval_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyashc.py", - "path": "./development/archive/development_history/legacy/nyashc.py", - "language": "python", - "size_bytes": 3254, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.424652191Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_compile_nyash", - "name": "compile_nyash", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 75, - "column_start": 0, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 88, - "column_start": 0, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash tokenize, Parser", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_ir_gen NyashIRGenerator", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_to_llvm NyashToLLVMConverter", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyashc_v2.py", - "path": "./development/archive/development_history/legacy/nyashc_v2.py", - "language": "python", - "size_bytes": 4380, - "total_lines": 140, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.428414711Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_compile_nyash", - "name": "compile_nyash", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 96, - "column_start": 0, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 137, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v2 tokenize, Parser", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_ir_gen_v2 NyashIRGeneratorV2", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_to_llvm_v2 NyashToLLVMConverterV2", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_ir_gen.py", - "path": "./development/archive/development_history/legacy/nyash_ir_gen.py", - "language": "python", - "size_bytes": 6004, - "total_lines": 226, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.432364628Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_indent", - "name": "indent", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "line", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 36, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "ast_nodes", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_box", - "name": "gen_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 48, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_function", - "name": "gen_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 93, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_declaration", - "name": "gen_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 106, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_statement", - "name": "gen_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 117, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_expr", - "name": "gen_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 148, - "column_start": 4, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_ir_generation", - "name": "test_ir_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 223, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashIRGenerator", - "name": "NyashIRGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 148, - "column_start": 0, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "indent", - "emit", - "new_temp", - "generate", - "gen_box", - "gen_function", - "gen_declaration", - "gen_statement", - "gen_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "nyash *", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_ir_generator.py", - "path": "./development/archive/development_history/legacy/nyash_ir_generator.py", - "language": "python", - "size_bytes": 6527, - "total_lines": 243, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.436366576Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 4, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_function", - "name": "gen_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 121, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_statement", - "name": "gen_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 136, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_expr", - "name": "gen_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 159, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_ir_generation", - "name": "test_ir_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 193, - "column_start": 0, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_detailed_ir_example", - "name": "show_detailed_ir_example", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 238, - "column_start": 0, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_IRInstruction", - "name": "IRInstruction", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRAlloca", - "name": "IRAlloca", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRStore", - "name": "IRStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 0, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRLoad", - "name": "IRLoad", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 0, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRBinOp", - "name": "IRBinOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 41, - "column_start": 0, - "column_end": 14, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRCall", - "name": "IRCall", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 49, - "column_start": 0, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRReturn", - "name": "IRReturn", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 0, - "column_end": 14, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IRGenerator", - "name": "IRGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 159, - "column_start": 0, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "new_temp", - "generate", - "gen_function", - "gen_statement", - "gen_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "dataclasses dataclass", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "typing List, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash *", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_ir_gen_v2.py", - "path": "./development/archive/development_history/legacy/nyash_ir_gen_v2.py", - "language": "python", - "size_bytes": 7475, - "total_lines": 232, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.440642508Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_indent", - "name": "indent", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "line", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_string_const", - "name": "new_string_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 53, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "ast_nodes", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_box", - "name": "gen_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 64, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_function", - "name": "gen_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 106, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_declaration", - "name": "gen_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 126, - "column_start": 4, - "column_end": 87, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_statement", - "name": "gen_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 148, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_expr", - "name": "gen_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 176, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashIRGeneratorV2", - "name": "NyashIRGeneratorV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 176, - "column_start": 0, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "indent", - "emit", - "new_temp", - "new_string_const", - "generate", - "gen_box", - "gen_function", - "gen_declaration", - "gen_statement", - "gen_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "nyash_v2 *", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_to_llvm.py", - "path": "./development/archive/development_history/legacy/nyash_to_llvm.py", - "language": "python", - "size_bytes": 7195, - "total_lines": 216, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.444865808Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "line", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 48, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_nyash_ir", - "name": "parse_nyash_ir", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 67, - "column_start": 4, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 145, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_instruction", - "name": "convert_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 188, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_llvm_conversion", - "name": "test_llvm_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 213, - "column_start": 0, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashToLLVMConverter", - "name": "NyashToLLVMConverter", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 188, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "emit", - "convert", - "parse_nyash_ir", - "parse_function", - "convert_instruction" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing List, Dict", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_to_llvm_v2.py", - "path": "./development/archive/development_history/legacy/nyash_to_llvm_v2.py", - "language": "python", - "size_bytes": 9377, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.449367411Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "line", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 59, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_nyash_ir", - "name": "parse_nyash_ir", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 101, - "column_start": 4, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_string_content", - "name": "convert_string_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 174, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_instruction", - "name": "convert_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 234, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_string_size", - "name": "get_string_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 244, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashToLLVMConverterV2", - "name": "NyashToLLVMConverterV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 244, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "emit", - "convert", - "parse_nyash_ir", - "convert_string_content", - "parse_function", - "convert_instruction", - "get_string_size" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing List, Dict", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v2.py", - "path": "./development/archive/development_history/legacy/nyash_v2.py", - "language": "python", - "size_bytes": 12733, - "total_lines": 391, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.454244029Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 15, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___repr__", - "name": "__repr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 18, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 80, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 91, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 95, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_current", - "name": "current", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 113, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_box", - "name": "parse_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 131, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 139, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_block", - "name": "parse_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 157, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_init", - "name": "parse_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 168, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_fini", - "name": "parse_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 179, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_declaration", - "name": "parse_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 200, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 210, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 218, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print_str", - "name": "parse_print_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 226, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_assignment", - "name": "parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_expr", - "name": "parse_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 248, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_term", - "name": "parse_term", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 258, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_factor", - "name": "parse_factor", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 271, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 287, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_function", - "name": "eval_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 290, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_block", - "name": "eval_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 300, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_init", - "name": "eval_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 320, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_fini", - "name": "eval_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 324, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_statement", - "name": "eval_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 337, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_expr", - "name": "eval_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 359, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 18, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__repr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_StringNode", - "name": "StringNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintStrNode", - "name": "PrintStrNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Parser", - "name": "Parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 271, - "column_start": 0, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "current", - "consume", - "parse", - "parse_box", - "parse_function", - "parse_block", - "parse_init", - "parse_fini", - "parse_declaration", - "parse_statement", - "parse_print", - "parse_print_str", - "parse_assignment", - "parse_expr", - "parse_term", - "parse_factor" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Evaluator", - "name": "Evaluator", - "symbol_type": "Class", - "file_path": "", - "line_start": 274, - "line_end": 359, - "column_start": 0, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "eval", - "eval_function", - "eval_block", - "eval_init", - "eval_fini", - "eval_statement", - "eval_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash (\n ASTNode, BoxNode, FunctionNode, BlockNode, InitNode, FiniNode,\n DeclNode, AssignNode, BinOpNode, NumberNode, VarNode, PrintNode\n)", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 83 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_main.py", - "path": "./development/archive/development_history/nyash_main.py", - "language": "python", - "size_bytes": 19439, - "total_lines": 552, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.466805617Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 50, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__load_and_parse", - "name": "_load_and_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 74, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_interpreter", - "name": "_run_interpreter", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 93, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_cpp_backend", - "name": "_run_cpp_backend", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 152, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_both_and_compare", - "name": "_run_both_and_compare", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 174, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 192, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__generate_main_cpp", - "name": "_generate_main_cpp", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_statement", - "name": "_convert_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 230, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_assignment", - "name": "_convert_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 258, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_expression_statement", - "name": "_convert_expression_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 270, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_print", - "name": "_convert_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 288, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_binary_assignment", - "name": "_convert_binary_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 298, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_expression_to_cpp", - "name": "_convert_expression_to_cpp", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 311, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_arrow_method_call", - "name": "_convert_arrow_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 338, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_nowait_arrow_method_call", - "name": "_convert_nowait_arrow_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 366, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__generate_box_header", - "name": "_generate_box_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 415, - "column_start": 4, - "column_end": 3, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__generate_box_implementation", - "name": "_generate_box_implementation", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 521, - "column_start": 4, - "column_end": 3, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 548, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashV5Main", - "name": "NyashV5Main", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 174, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "run", - "_load_and_parse", - "_run_interpreter", - "_run_cpp_backend", - "_run_both_and_compare" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashCppGenerator", - "name": "NyashCppGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 521, - "column_start": 0, - "column_end": 3, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "generate", - "_generate_main_cpp", - "_convert_statement", - "_convert_assignment", - "_convert_expression_statement", - "_convert_print", - "_convert_binary_assignment", - "_convert_expression_to_cpp", - "_convert_arrow_method_call", - "_convert_nowait_arrow_method_call", - "_generate_box_header", - "_generate_box_implementation" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "typing Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyashc_v4 NyashTokenizer, NyashParser, NyashInterpreter", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 23 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 91 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 150 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "setup.py", - "path": "./development/archive/development_history/tools/nekocode/bin/setup.py", - "language": "python", - "size_bytes": 2053, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.529356542Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [ - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 5 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "basic_analysis.cpp", - "path": "./development/archive/development_history/tools/nekocode/examples/basic_analysis.cpp", - "language": "cpp", - "size_bytes": 3213, - "total_lines": 124, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.557879529Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_DataProcessor", - "name": "DataProcessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_findMax", - "name": "findMax", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_DataProcessor", - "name": "DataProcessor", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_language_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/cpp_language_analyzer.hpp", - "language": "cpp", - "size_bytes": 6446, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.563721479Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CppLanguageAnalyzer", - "name": "CppLanguageAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CLanguageAnalyzer", - "name": "CLanguageAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_minimal_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/cpp_minimal_grammar.hpp", - "language": "cpp", - "size_bytes": 4912, - "total_lines": 140, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.565818480Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_comment", - "name": "line_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block_comment", - "name": "block_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignore", - "name": "ignore", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_optional_ws", - "name": "optional_ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_required_ws", - "name": "required_ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_namespace_keyword", - "name": "namespace_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_keyword", - "name": "class_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_struct_keyword", - "name": "struct_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_public_keyword", - "name": "public_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_private_keyword", - "name": "private_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protected_keyword", - "name": "protected_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_namespace", - "name": "simple_namespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 64, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_class", - "name": "simple_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 78, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_struct", - "name": "simple_struct", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 88, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_params", - "name": "function_params", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_return_type", - "name": "return_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 0, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_function", - "name": "simple_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 109, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_element", - "name": "cpp_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 121, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_minimal", - "name": "cpp_minimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_grammar_debug", - "name": "cpp_grammar_debug", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 136, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/cpp_pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 71278, - "total_lines": 1443, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.570995386Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CppPEGTLAnalyzer", - "name": "CppPEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 675, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 856, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 859, - "line_end": 906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 909, - "line_end": 1057, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1075, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1078, - "line_end": 1144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1147, - "line_end": 1209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1266, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1269, - "line_end": 1288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1291, - "line_end": 1294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1297, - "line_end": 1335, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1338, - "line_end": 1365, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1368, - "line_end": 1440, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CppParseState", - "name": "CppParseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_action", - "name": "cpp_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppPEGTLAnalyzer", - "name": "CppPEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 214, - "line_end": 1441, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_minimal_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/csharp_minimal_grammar.hpp", - "language": "cpp", - "size_bytes": 5424, - "total_lines": 166, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.574431405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignore", - "name": "ignore", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_public_keyword", - "name": "public_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protected_keyword", - "name": "protected_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_private_keyword", - "name": "private_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_internal_keyword", - "name": "internal_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_access_modifier", - "name": "access_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_keyword", - "name": "static_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_virtual_keyword", - "name": "virtual_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_override_keyword", - "name": "override_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_async_keyword", - "name": "async_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sealed_keyword", - "name": "sealed_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_abstract_keyword", - "name": "abstract_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_modifier", - "name": "other_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_modifiers", - "name": "modifiers", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_void_keyword", - "name": "void_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_keyword", - "name": "string_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int_keyword", - "name": "int_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bool_keyword", - "name": "bool_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_generic_params", - "name": "generic_params", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_name", - "name": "type_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_params", - "name": "method_params", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 0, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_normal_method", - "name": "normal_method", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 90, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_constructor", - "name": "constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 100, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_arrow", - "name": "property_arrow", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 111, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_getset", - "name": "property_getset", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 122, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_decl", - "name": "method_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_keyword", - "name": "class_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_header", - "name": "class_header", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 139, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block_content", - "name": "block_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_block", - "name": "class_block", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_csharp_minimal", - "name": "csharp_minimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 162, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/csharp_pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 39619, - "total_lines": 799, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.578004348Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CSharpPEGTLAnalyzer", - "name": "CSharpPEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 250, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 605, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 796, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CSharpParseState", - "name": "CSharpParseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 225, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CSharpPEGTLAnalyzer", - "name": "CSharpPEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 797, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_pegtl_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/csharp_pegtl_grammar.hpp", - "language": "cpp", - "size_bytes": 7558, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.581849378Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws1", - "name": "ws1", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_start", - "name": "identifier_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_cont", - "name": "identifier_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_qualified_identifier", - "name": "qualified_identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_literal", - "name": "string_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_verbatim_string", - "name": "verbatim_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_comment", - "name": "line_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block_comment", - "name": "block_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignored", - "name": "ignored", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attribute_target", - "name": "attribute_target", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attribute_argument", - "name": "attribute_argument", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attribute_arguments", - "name": "attribute_arguments", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attribute", - "name": "attribute", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 0, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attribute_section", - "name": "attribute_section", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_attributes", - "name": "attributes", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_access_modifier", - "name": "access_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_modifier", - "name": "class_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_modifier", - "name": "method_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 87, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_parameter", - "name": "type_parameter", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_parameters", - "name": "type_parameters", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 0, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_name", - "name": "type_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nullable_type", - "name": "nullable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_type", - "name": "array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 0, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type", - "name": "type", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_using_alias", - "name": "using_alias", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 0, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_using_static", - "name": "using_static", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 0, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_using_namespace", - "name": "using_namespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_using_directive", - "name": "using_directive", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 0, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_namespace_name", - "name": "namespace_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_namespace_declaration", - "name": "namespace_declaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_modifier", - "name": "parameter_modifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 137, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter", - "name": "parameter", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 144, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list", - "name": "parameter_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_declaration", - "name": "method_declaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 154, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_base_list", - "name": "base_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 0, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_declaration", - "name": "class_declaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 170, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_interface_declaration", - "name": "interface_declaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_struct_declaration", - "name": "struct_declaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 188, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_csharp_file", - "name": "csharp_file", - "symbol_type": "Class", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_simple_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/csharp_simple_grammar.hpp", - "language": "cpp", - "size_bytes": 2658, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.584083050Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_literal", - "name": "string_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_using_stmt", - "name": "using_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 39, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_decl", - "name": "class_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_decl", - "name": "method_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 63, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_csharp_simple", - "name": "csharp_simple", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "go_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/go_analyzer.hpp", - "language": "cpp", - "size_bytes": 8407, - "total_lines": 266, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.586833083Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_GoAnalyzer", - "name": "GoAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_GoroutineInfo", - "name": "GoroutineInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ChannelInfo", - "name": "ChannelInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_GoFunctionInfo", - "name": "GoFunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_package_kw", - "name": "package_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_kw", - "name": "import_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_func_kw", - "name": "func_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_go_kw", - "name": "go_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chan_kw", - "name": "chan_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_select_kw", - "name": "select_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defer_kw", - "name": "defer_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_make_kw", - "name": "make_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_kw", - "name": "type_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_struct_kw", - "name": "struct_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_interface_kw", - "name": "interface_kw", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_package_decl", - "name": "package_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_path", - "name": "import_path", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 94, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_stmt", - "name": "import_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 106, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list", - "name": "parameter_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_return_types", - "name": "return_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 126, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_receiver", - "name": "receiver", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_func_decl", - "name": "func_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_goroutine", - "name": "goroutine", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 150, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_make_chan", - "name": "make_chan", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 159, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_channel_send", - "name": "channel_send", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 164, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_channel_receive", - "name": "channel_receive", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 169, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_select_stmt", - "name": "select_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defer_stmt", - "name": "defer_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_struct_decl", - "name": "struct_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 186, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_interface_decl", - "name": "interface_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 4, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_GoAnalyzer", - "name": "GoAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_go_action", - "name": "go_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 218, - "line_end": 218, - "column_start": 28, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_33", - "name": "class_33", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 243, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 250, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_35", - "name": "class_35", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 257, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_36", - "name": "class_36", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 264, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/python_analyzer.hpp", - "language": "cpp", - "size_bytes": 2995, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.588831034Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_PythonAnalyzer", - "name": "PythonAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_minimal_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/python_minimal_grammar.hpp", - "language": "cpp", - "size_bytes": 4362, - "total_lines": 134, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.590890995Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_comment", - "name": "python_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_space_no_newline", - "name": "space_no_newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignore", - "name": "ignore", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_indent", - "name": "indent", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_start", - "name": "line_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_def_keyword", - "name": "def_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_keyword", - "name": "class_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_keyword", - "name": "import_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_keyword", - "name": "from_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_as_keyword", - "name": "as_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_params", - "name": "python_params", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_class", - "name": "python_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 62, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_function", - "name": "python_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_method", - "name": "python_method", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_import", - "name": "simple_import", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 91, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_import", - "name": "from_import", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 102, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_import", - "name": "python_import", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_element", - "name": "python_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_minimal", - "name": "python_minimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_line", - "name": "python_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 130, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/python_pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 32159, - "total_lines": 773, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.594329059Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_PythonPEGTLAnalyzer", - "name": "PythonPEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 386, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 563, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 587, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 590, - "line_end": 598, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 617, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 630, - "line_end": 645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 651, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 702, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_PythonParseState", - "name": "PythonParseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_python_action", - "name": "python_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PythonPEGTLAnalyzer", - "name": "PythonPEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 771, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/rust_analyzer.hpp", - "language": "cpp", - "size_bytes": 4075, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.596779435Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_RustAnalyzer", - "name": "RustAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_RustFunctionInfo", - "name": "RustFunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TraitInfo", - "name": "TraitInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ImplInfo", - "name": "ImplInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MacroInfo", - "name": "MacroInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StructInfo", - "name": "StructInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EnumInfo", - "name": "EnumInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_RustAnalyzer", - "name": "RustAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unity_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/unity_analyzer.hpp", - "language": "cpp", - "size_bytes": 2895, - "total_lines": 73, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.598502001Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UnityAnalyzer", - "name": "UnityAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UnityAnalyzer", - "name": "UnityAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unity_components.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/unity_components.hpp", - "language": "cpp", - "size_bytes": 28786, - "total_lines": 641, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.601594601Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UnityPatternDetector", - "name": "UnityPatternDetector", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_PerformanceWarningDetector", - "name": "PerformanceWarningDetector", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 425, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 437, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 467, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 503, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 534, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 552, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LifecycleMethodClassifier", - "name": "LifecycleMethodClassifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 561, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 568, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 585, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 630, - "line_end": 637, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UnityPatternDetector", - "name": "UnityPatternDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PerformanceWarningDetector", - "name": "PerformanceWarningDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 416, - "line_end": 553, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PerformanceIssue", - "name": "PerformanceIssue", - "symbol_type": "Class", - "file_path": "", - "line_start": 418, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LifecycleMethodClassifier", - "name": "LifecycleMethodClassifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 559, - "line_end": 638, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unity_patterns.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/analyzers/unity_patterns.hpp", - "language": "cpp", - "size_bytes": 5734, - "total_lines": 156, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.604147830Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_PerformancePattern", - "name": "PerformancePattern", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UnityStatistics", - "name": "UnityStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "command_dispatcher.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/command_dispatcher.hpp", - "language": "cpp", - "size_bytes": 2655, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.606168916Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_CommandDispatcher", - "name": "CommandDispatcher", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CommandDispatcher", - "name": "CommandDispatcher", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "command_line_args.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/command_line_args.hpp", - "language": "cpp", - "size_bytes": 2180, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.607796014Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_CommandLineArgs", - "name": "CommandLineArgs", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/core.hpp", - "language": "cpp", - "size_bytes": 17631, - "total_lines": 433, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.610095992Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_NekoCodeCore", - "name": "NekoCodeCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 4, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 383, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_measure_time", - "name": "measure_time", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NekoCodeCore", - "name": "NekoCodeCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_JavaScriptAnalyzer", - "name": "JavaScriptAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ComplexityCalculator", - "name": "ComplexityCalculator", - "symbol_type": "Class", - "file_path": "", - "line_start": 291, - "line_end": 338, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HalsteadMetrics", - "name": "HalsteadMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 317, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileScanner", - "name": "FileScanner", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 391, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ScanStats", - "name": "ScanStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 374, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/cpp_analyzer.hpp", - "language": "cpp", - "size_bytes": 11758, - "total_lines": 301, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.612317464Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_CppAnalyzer", - "name": "CppAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DependencyInfo", - "name": "DependencyInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DependencyAnalysisResult", - "name": "DependencyAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemberInfo", - "name": "MemberInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 207, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppFeatureDetector", - "name": "CppFeatureDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 243, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppFeatures", - "name": "CppFeatures", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppErrorDetector", - "name": "CppErrorDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 299, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppError", - "name": "CppError", - "symbol_type": "Class", - "file_path": "", - "line_start": 284, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_logger.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/debug_logger.hpp", - "language": "cpp", - "size_bytes": 7272, - "total_lines": 197, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.614357207Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_get_timestamp", - "name": "get_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_output", - "name": "log_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_trace", - "name": "log_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_debug", - "name": "log_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_info", - "name": "log_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_warn", - "name": "log_warn", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_log_error", - "name": "log_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_PerformanceTimer", - "name": "PerformanceTimer", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_PerformanceTimer", - "name": "PerformanceTimer", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AnalysisStats", - "name": "AnalysisStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "formatters.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/formatters.hpp", - "language": "cpp", - "size_bytes": 2256, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.616193593Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IReportFormatter", - "name": "IReportFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AIReportFormatter", - "name": "AIReportFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HumanReportFormatter", - "name": "HumanReportFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FormatterFactory", - "name": "FormatterFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "include_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/include_analyzer.hpp", - "language": "cpp", - "size_bytes": 6537, - "total_lines": 172, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.617960670Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_IncludeInfo", - "name": "IncludeInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IncludeNode", - "name": "IncludeNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CircularDependency", - "name": "CircularDependency", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UnusedInclude", - "name": "UnusedInclude", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IncludeOptimization", - "name": "IncludeOptimization", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IncludeAnalysisResult", - "name": "IncludeAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HotspotHeader", - "name": "HotspotHeader", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_OptimizationPotential", - "name": "OptimizationPotential", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IncludeAnalyzer", - "name": "IncludeAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Config", - "name": "Config", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ImpactAnalysis", - "name": "ImpactAnalysis", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "language_detection.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/language_detection.hpp", - "language": "cpp", - "size_bytes": 8962, - "total_lines": 276, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.620017596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_LanguageInfo", - "name": "LanguageInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LanguageInfo", - "name": "LanguageInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 36, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LanguageElement", - "name": "LanguageElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LanguageElement", - "name": "LanguageElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CppNamespace", - "name": "CppNamespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CppClass", - "name": "CppClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CppFunction", - "name": "CppFunction", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CppAnalysisResult", - "name": "CppAnalysisResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_MultiLanguageAnalysisResult", - "name": "MultiLanguageAnalysisResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 4, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_LanguageInfo", - "name": "LanguageInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageDetector", - "name": "LanguageDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageAnalysisConfig", - "name": "LanguageAnalysisConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 105, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageElement", - "name": "LanguageElement", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppNamespace", - "name": "CppNamespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppTemplate", - "name": "CppTemplate", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppClass", - "name": "CppClass", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppFunction", - "name": "CppFunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppInclude", - "name": "CppInclude", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppMacro", - "name": "CppMacro", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TemplateAnalysisResult", - "name": "TemplateAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 194, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppAnalysisResult", - "name": "CppAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 208, - "line_end": 245, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppStatistics", - "name": "CppStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MultiLanguageAnalysisResult", - "name": "MultiLanguageAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_command.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/memory_command.hpp", - "language": "cpp", - "size_bytes": 1816, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.621734853Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_MemoryManager", - "name": "MemoryManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemoryCommand", - "name": "MemoryCommand", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nekocode.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/nekocode.hpp", - "language": "cpp", - "size_bytes": 14, - "total_lines": 1, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.623171531Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NO_REGEX_BASE.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/NO_REGEX_BASE.hpp", - "language": "cpp", - "size_bytes": 4486, - "total_lines": 119, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.624959763Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NoRegexAnalyzer", - "name": "NoRegexAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NoRegexAnalyzer", - "name": "NoRegexAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 105, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 9015, - "total_lines": 210, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.627239367Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_PEGTLAnalyzer", - "name": "PEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_PEGTLAnalyzer", - "name": "PEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ParseMetrics", - "name": "ParseMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 4, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_whitespace", - "name": "whitespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_comment", - "name": "line_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block_comment", - "name": "block_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_include_path", - "name": "include_path", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_include", - "name": "include", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 4, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_namespace_name", - "name": "namespace_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_namespace_decl", - "name": "namespace_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 4, - "column_end": 137, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_name", - "name": "class_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_keyword", - "name": "class_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 4, - "column_end": 104, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_decl", - "name": "class_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_name", - "name": "function_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list", - "name": "parameter_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_decl", - "name": "function_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 4, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_element", - "name": "cpp_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 4, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cpp_grammar", - "name": "cpp_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 4, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_whitespace", - "name": "whitespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_path", - "name": "import_path", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_stmt", - "name": "import_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 157, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_export_stmt", - "name": "export_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_name", - "name": "function_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_keyword", - "name": "function_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 4, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_decl", - "name": "function_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 4, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_name", - "name": "class_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_decl", - "name": "class_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 4, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_js_element", - "name": "js_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 4, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_js_grammar", - "name": "js_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_VersionInfo", - "name": "VersionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "progress_tracker.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/progress_tracker.hpp", - "language": "cpp", - "size_bytes": 3407, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.629224897Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ProgressTracker", - "name": "ProgressTracker", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SessionProgressTracker", - "name": "SessionProgressTracker", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_commands.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/session_commands.hpp", - "language": "cpp", - "size_bytes": 8151, - "total_lines": 186, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.631236743Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SessionCommands", - "name": "SessionCommands", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SessionCommands", - "name": "SessionCommands", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_data.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/session_data.hpp", - "language": "cpp", - "size_bytes": 2050, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.632898143Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_SessionData", - "name": "SessionData", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CommandHistory", - "name": "CommandHistory", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_manager.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/session_manager.hpp", - "language": "cpp", - "size_bytes": 2974, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.634472829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_SessionManager", - "name": "SessionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "symbol_finder.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/symbol_finder.hpp", - "language": "cpp", - "size_bytes": 5957, - "total_lines": 147, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.636276441Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FindOptions", - "name": "FindOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 8, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 8, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FindOutputManager", - "name": "FindOutputManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SymbolFinder", - "name": "SymbolFinder", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SymbolLocation", - "name": "SymbolLocation", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FindOptions", - "name": "FindOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FindResults", - "name": "FindResults", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FindOutputManager", - "name": "FindOutputManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/tree_sitter_analyzer.hpp", - "language": "cpp", - "size_bytes": 8314, - "total_lines": 209, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.638174131Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TreeSitterAnalyzer", - "name": "TreeSitterAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TreeSitterAnalyzer", - "name": "TreeSitterAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 172, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ASTStats", - "name": "ASTStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ParseMetrics", - "name": "ParseMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_VersionInfo", - "name": "VersionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ParserStats", - "name": "ParserStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "types.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/types.hpp", - "language": "cpp", - "size_bytes": 34253, - "total_lines": 952, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.641517821Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FileInfo", - "name": "FileInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileInfo", - "name": "FileInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ComplexityInfo", - "name": "ComplexityInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_MemberVariable", - "name": "MemberVariable", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_MemberVariable", - "name": "MemberVariable", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 149, - "column_start": 4, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ClassMetrics", - "name": "ClassMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ImportInfo", - "name": "ImportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ImportInfo", - "name": "ImportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ExportInfo", - "name": "ExportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ExportInfo", - "name": "ExportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FunctionCall", - "name": "FunctionCall", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FunctionCall", - "name": "FunctionCall", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 232, - "column_start": 4, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CommentInfo", - "name": "CommentInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CommentInfo", - "name": "CommentInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AnalysisResult", - "name": "AnalysisResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ASTNode", - "name": "ASTNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 403, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ASTNode", - "name": "ASTNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 405, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 474, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 500, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 568, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 578, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 586, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 601, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 615, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DirectoryAnalysis", - "name": "DirectoryAnalysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 647, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AnalysisConfig", - "name": "AnalysisConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 747, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 813, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AnalysisError", - "name": "AnalysisError", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 843, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AnalysisError", - "name": "AnalysisError", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 844, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AnalysisError", - "name": "AnalysisError", - "symbol_type": "Function", - "file_path": "", - "line_start": 845, - "line_end": 846, - "column_start": 4, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 848, - "line_end": 848, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 849, - "line_end": 849, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Result", - "name": "Result", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 864, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Result", - "name": "Result", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 865, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Result", - "name": "Result", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 866, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 868, - "line_end": 868, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_56", - "name": "function_56", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 869, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 871, - "line_end": 874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 879, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 881, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_map", - "name": "map", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 892, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileInfo", - "name": "FileInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ComplexityInfo", - "name": "ComplexityInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemberVariable", - "name": "MemberVariable", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ClassMetrics", - "name": "ClassMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ImportInfo", - "name": "ImportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ExportInfo", - "name": "ExportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FunctionCall", - "name": "FunctionCall", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CommentInfo", - "name": "CommentInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 258, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AnalysisResult", - "name": "AnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 318, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 294, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 378, - "line_end": 475, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ASTStatistics", - "name": "ASTStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 481, - "line_end": 547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EnhancedAnalysisResult", - "name": "EnhancedAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 550, - "line_end": 616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DirectoryAnalysis", - "name": "DirectoryAnalysis", - "symbol_type": "Class", - "file_path": "", - "line_start": 622, - "line_end": 685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Summary", - "name": "Summary", - "symbol_type": "Class", - "file_path": "", - "line_start": 627, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AnalysisConfig", - "name": "AnalysisConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 703, - "line_end": 778, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PerformanceMetrics", - "name": "PerformanceMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 794, - "line_end": 819, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AnalysisError", - "name": "AnalysisError", - "symbol_type": "Class", - "file_path": "", - "line_start": 837, - "line_end": 850, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Result", - "name": "Result", - "symbol_type": "Class", - "file_path": "", - "line_start": 857, - "line_end": 893, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8_utils.hpp", - "path": "./development/archive/development_history/tools/nekocode/include/nekocode/utf8_utils.hpp", - "language": "cpp", - "size_bytes": 5960, - "total_lines": 172, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.643837943Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UTF8Iterator", - "name": "UTF8Iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SafeFileContent", - "name": "SafeFileContent", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 166, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "api.h", - "path": "./development/archive/development_history/tools/nekocode/include/tree-sitter/api.h", - "language": "c", - "size_bytes": 2139, - "total_lines": 73, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.646872432Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 8, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNode", - "name": "TSNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 8, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 8, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSParser", - "name": "TSParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 8, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSTree", - "name": "TSTree", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 8, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSTreeCursor", - "name": "TSTreeCursor", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 8, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "api.h", - "path": "./development/archive/development_history/tools/nekocode/include/tree-sitter-compat/tree_sitter/api.h", - "language": "c", - "size_bytes": 2948, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.650740313Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 8, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSParser", - "name": "TSParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 8, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSTree", - "name": "TSTree", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 8, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 8, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 8, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 8, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mcp_server_nekocode.py", - "path": "./development/archive/development_history/tools/nekocode/mcp-nekocode-server/mcp_server_nekocode.py", - "language": "python", - "size_bytes": 15976, - "total_lines": 416, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.657276255Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_tool", - "name": "add_tool", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 10, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "handler", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__find_nekocode_binary", - "name": "_find_nekocode_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 63, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_setup_tools", - "name": "setup_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 177, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_nekocode", - "name": "_run_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 198, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_analyze_project", - "name": "analyze_project", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 226, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 251, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_session_stats", - "name": "session_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 266, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_session_complexity", - "name": "session_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 273, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_detect_include_cycles", - "name": "detect_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 289, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_include_graph", - "name": "show_include_graph", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 305, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_optimize_includes", - "name": "optimize_includes", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 312, - "column_start": 4, - "column_end": 88, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_find_files", - "name": "find_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 319, - "column_start": 4, - "column_end": 84, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_memory_command", - "name": "memory_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 378, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_list_supported_languages", - "name": "list_supported_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 392, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 404, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_MCPServer", - "name": "MCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 38, - "column_start": 0, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "add_tool", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NekoCodeMCPServer", - "name": "NekoCodeMCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 404, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_find_nekocode_binary", - "setup_tools", - "_run_nekocode", - "analyze_project", - "create_session", - "session_stats", - "session_complexity", - "detect_include_cycles", - "show_include_graph", - "optimize_includes", - "find_files", - "memory_command", - "list_supported_languages", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "asyncio", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "pathlib Path", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "typing Dict, List, Optional, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 18 - }, - { - "module": "logging", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 19 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mcp_server_real.py", - "path": "./development/archive/development_history/tools/nekocode/mcp-nekocode-server/mcp_server_real.py", - "language": "python", - "size_bytes": 25208, - "total_lines": 628, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.663447411Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__find_nekocode_binary", - "name": "_find_nekocode_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 60, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__define_tools", - "name": "_define_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 202, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_nekocode", - "name": "_run_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 229, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_initialize", - "name": "handle_initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 248, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_tools_list", - "name": "handle_tools_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_resources_list", - "name": "handle_resources_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 267, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_resources_read", - "name": "handle_resources_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 287, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_tools_call", - "name": "handle_tools_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 331, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_analyze", - "name": "_tool_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 354, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_session_create", - "name": "_tool_session_create", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 366, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_session_stats", - "name": "_tool_session_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 382, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_include_cycles", - "name": "_tool_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 398, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_include_graph", - "name": "_tool_include_graph", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 414, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_list_languages", - "name": "_tool_list_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 428, - "column_start": 4, - "column_end": 108, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_replace_preview", - "name": "_tool_replace_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 450, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_replace_confirm", - "name": "_tool_replace_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 470, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_insert_preview", - "name": "_tool_insert_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 492, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_insert_confirm", - "name": "_tool_insert_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 512, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_history", - "name": "_tool_edit_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 530, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_show", - "name": "_tool_edit_show", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 550, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_send_message", - "name": "send_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 560, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_receive_message", - "name": "receive_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 574, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 623, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NekoCodeMCPServer", - "name": "NekoCodeMCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 623, - "column_start": 0, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_find_nekocode_binary", - "_define_tools", - "_run_nekocode", - "handle_initialize", - "handle_tools_list", - "handle_resources_list", - "handle_resources_read", - "handle_tools_call", - "_tool_analyze", - "_tool_session_create", - "_tool_session_stats", - "_tool_include_cycles", - "_tool_include_graph", - "_tool_list_languages", - "_tool_replace_preview", - "_tool_replace_confirm", - "_tool_insert_preview", - "_tool_insert_confirm", - "_tool_edit_history", - "_tool_edit_show", - "send_message", - "receive_message", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "asyncio", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "typing Dict, List, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "logging", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "shutil", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 54 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/cpp_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 104, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.683619543Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/cpp_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 12421, - "total_lines": 315, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.685977897Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_CppUniversalAdapter", - "name": "CppUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CppUniversalAdapter", - "name": "CppUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 312, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/csharp_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 107, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.687796278Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/csharp_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 14455, - "total_lines": 367, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.690199279Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_CSharpUniversalAdapter", - "name": "CSharpUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 253, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 350, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CSharpUniversalAdapter", - "name": "CSharpUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "go_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/go_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 103, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.692000667Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "go_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/go_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 14601, - "total_lines": 377, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.694417395Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_GoUniversalAdapter", - "name": "GoUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 303, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 324, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_GoUniversalAdapter", - "name": "GoUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "javascript_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/javascript_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 111, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.696242371Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "javascript_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/javascript_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 8810, - "total_lines": 216, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.698219674Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_JavaScriptUniversalAdapter", - "name": "JavaScriptUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_JavaScriptUniversalAdapter", - "name": "JavaScriptUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 213, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/python_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 107, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.699868168Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/python_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 11008, - "total_lines": 283, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.702057614Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_PythonUniversalAdapter", - "name": "PythonUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 240, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 253, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_PythonUniversalAdapter", - "name": "PythonUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 280, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust_universal_adapter.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/rust_universal_adapter.cpp", - "language": "cpp", - "size_bytes": 105, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.703803452Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust_universal_adapter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/adapters/rust_universal_adapter.hpp", - "language": "cpp", - "size_bytes": 16939, - "total_lines": 453, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.706446692Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_RustUniversalAdapter", - "name": "RustUniversalAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 253, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 336, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 400, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 426, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 439, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 449, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_RustUniversalAdapter", - "name": "RustUniversalAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 450, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer_factory.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/analyzer_factory.cpp", - "language": "cpp", - "size_bytes": 8776, - "total_lines": 209, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.710092610Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 177, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 195, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "base_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/base_analyzer.hpp", - "language": "cpp", - "size_bytes": 7212, - "total_lines": 183, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.712157237Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_BaseAnalyzer", - "name": "BaseAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AnalyzerFactory", - "name": "AnalyzerFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/cpp/cpp_analyzer.cpp", - "language": "cpp", - "size_bytes": 50258, - "total_lines": 1304, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.720120269Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 348, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 373, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 422, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 446, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 505, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 513, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 527, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 535, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 539, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 543, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 559, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 581, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 611, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 629, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 653, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 668, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 680, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 713, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 715, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TemplateParser", - "name": "TemplateParser", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 744, - "column_start": 4, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 754, - "line_end": 778, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 781, - "line_end": 811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 814, - "line_end": 840, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 873, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_MacroParser", - "name": "MacroParser", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 885, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 902, - "line_end": 922, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 945, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 984, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 986, - "line_end": 990, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 996, - "line_end": 1054, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1112, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 1114, - "line_end": 1132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1222, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1224, - "line_end": 1302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TemplateParser", - "name": "TemplateParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 739, - "line_end": 874, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TemplateRange", - "name": "TemplateRange", - "symbol_type": "Class", - "file_path": "", - "line_start": 747, - "line_end": 752, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MacroParser", - "name": "MacroParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 880, - "line_end": 978, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MacroInfo", - "name": "MacroInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 888, - "line_end": 893, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_language_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/cpp/cpp_language_analyzer.cpp", - "language": "cpp", - "size_bytes": 28439, - "total_lines": 732, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.724199766Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 154, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 178, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 384, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 404, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 413, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 433, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 464, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 486, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 509, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 550, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 570, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 592, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 633, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 635, - "line_end": 638, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 646, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 682, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 730, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp_pegtl_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/csharp/csharp_pegtl_analyzer.cpp", - "language": "cpp", - "size_bytes": 528, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.728115644Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "go_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/go/go_analyzer.cpp", - "language": "cpp", - "size_bytes": 18816, - "total_lines": 541, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.732681079Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 343, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 424, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 458, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 512, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 539, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "javascript_minimal_grammar.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/javascript/javascript_minimal_grammar.hpp", - "language": "cpp", - "size_bytes": 10027, - "total_lines": 314, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.738728766Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_single_comment", - "name": "single_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_multi_comment", - "name": "multi_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignore", - "name": "ignore", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_keyword", - "name": "function_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_async_keyword", - "name": "async_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_const_keyword", - "name": "const_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_let_keyword", - "name": "let_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_var_keyword", - "name": "var_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_keyword", - "name": "class_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_export_keyword", - "name": "export_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_keyword", - "name": "if_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_else_keyword", - "name": "else_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_keyword", - "name": "for_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_while_keyword", - "name": "while_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_switch_keyword", - "name": "switch_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_keyword", - "name": "case_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_keyword", - "name": "try_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_catch_keyword", - "name": "catch_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_return_keyword", - "name": "return_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_params", - "name": "function_params", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_annotation", - "name": "type_annotation", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_generics", - "name": "generics", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_decl", - "name": "function_decl", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 78, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_arrow_function", - "name": "arrow_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 93, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extends_keyword", - "name": "extends_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 0, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_header", - "name": "class_header", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_method", - "name": "class_method", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 126, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_content", - "name": "class_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_block", - "name": "class_block", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 138, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_keyword", - "name": "import_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_keyword", - "name": "from_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 0, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_literal", - "name": "string_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 151, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_stmt", - "name": "import_stmt", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 162, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_function", - "name": "simple_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_async_function", - "name": "async_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 196, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_export_function", - "name": "export_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 214, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_arrow", - "name": "simple_arrow", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 230, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_async_arrow", - "name": "async_arrow", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 248, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_import", - "name": "simple_import", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 263, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_simple_class", - "name": "simple_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 266, - "line_end": 273, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_export_class", - "name": "export_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 291, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_javascript_element", - "name": "javascript_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 294, - "line_end": 304, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_javascript_minimal", - "name": "javascript_minimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 310, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "javascript_pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/javascript/javascript_pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 96506, - "total_lines": 2106, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.746188605Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_JavaScriptParseState", - "name": "JavaScriptParseState", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 306, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 324, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 515, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 588, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 620, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 653, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 660, - "line_end": 691, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 750, - "line_end": 801, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 808, - "line_end": 852, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JavaScriptPEGTLAnalyzer", - "name": "JavaScriptPEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 861, - "line_end": 861, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 862, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 866, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 868, - "line_end": 870, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 1007, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 1010, - "line_end": 1109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1112, - "line_end": 1148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 1151, - "line_end": 1180, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 1183, - "line_end": 1275, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 1278, - "line_end": 1458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 1461, - "line_end": 1614, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 1617, - "line_end": 1763, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 1773, - "line_end": 1818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 1826, - "line_end": 1843, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 1846, - "line_end": 1854, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 1857, - "line_end": 1907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 1910, - "line_end": 1958, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 1961, - "line_end": 1987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 1990, - "line_end": 2031, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 2034, - "line_end": 2047, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_56", - "name": "function_56", - "symbol_type": "Function", - "file_path": "", - "line_start": 2050, - "line_end": 2082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 2085, - "line_end": 2103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_JavaScriptParseState", - "name": "JavaScriptParseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_javascript_action", - "name": "javascript_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 249, - "column_start": 0, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 283, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 301, - "line_end": 307, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 310, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 325, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 328, - "line_end": 334, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 338, - "line_end": 375, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 379, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 414, - "line_end": 443, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 447, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 483, - "line_end": 516, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 520, - "line_end": 557, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 561, - "line_end": 589, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 593, - "line_end": 621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 625, - "line_end": 654, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 658, - "line_end": 692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 696, - "line_end": 744, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 748, - "line_end": 802, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 806, - "line_end": 853, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_JavaScriptPEGTLAnalyzer", - "name": "JavaScriptPEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 859, - "line_end": 2104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FunctionRange", - "name": "FunctionRange", - "symbol_type": "Class", - "file_path": "", - "line_start": 1766, - "line_end": 1770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/python/python_analyzer.cpp", - "language": "cpp", - "size_bytes": 17051, - "total_lines": 433, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.752120585Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 154, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 258, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 314, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 358, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/rust/rust_analyzer.cpp", - "language": "cpp", - "size_bytes": 32585, - "total_lines": 830, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.758156663Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 434, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 461, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 528, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 588, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 632, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 660, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 676, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 828, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "typescript_pegtl_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/typescript/typescript_pegtl_analyzer.hpp", - "language": "cpp", - "size_bytes": 86564, - "total_lines": 1795, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.766277837Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TypeScriptPEGTLAnalyzer", - "name": "TypeScriptPEGTLAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 497, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 566, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 660, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 708, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 748, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 751, - "line_end": 780, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 812, - "line_end": 837, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 847, - "line_end": 885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 888, - "line_end": 1222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1225, - "line_end": 1244, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1247, - "line_end": 1270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1273, - "line_end": 1281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1284, - "line_end": 1334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1369, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 1372, - "line_end": 1420, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 1423, - "line_end": 1441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 1444, - "line_end": 1470, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 1473, - "line_end": 1514, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1517, - "line_end": 1576, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1579, - "line_end": 1704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1707, - "line_end": 1714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1717, - "line_end": 1732, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 1735, - "line_end": 1741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1744, - "line_end": 1792, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TypeScriptPEGTLAnalyzer", - "name": "TypeScriptPEGTLAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 1793, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FunctionRange", - "name": "FunctionRange", - "symbol_type": "Class", - "file_path": "", - "line_start": 840, - "line_end": 844, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unity_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/analyzers/unity/unity_analyzer.cpp", - "language": "cpp", - "size_bytes": 824, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.771052770Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_create_unity_analyzer", - "name": "create_unity_analyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "find_command.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/commands/find_command.cpp", - "language": "cpp", - "size_bytes": 5425, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.774562629Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FindCommand", - "name": "FindCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 15, - "column_start": 4, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_executeFindCommand", - "name": "executeFindCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FindCommand", - "name": "FindCommand", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_command.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/commands/memory_command.cpp", - "language": "cpp", - "size_bytes": 15907, - "total_lines": 409, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.777206196Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 226, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 262, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 320, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 368, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 385, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 407, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/core.cpp", - "language": "cpp", - "size_bytes": 46937, - "total_lines": 1143, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.783463349Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 67, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 161, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 223, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 251, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 444, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 491, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 545, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 627, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 647, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 655, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 657, - "line_end": 659, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 663, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 709, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 715, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 721, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 728, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 735, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 737, - "line_end": 748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 754, - "line_end": 757, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 759, - "line_end": 761, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 769, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 778, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 785, - "line_end": 787, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 795, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 799, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 801, - "line_end": 803, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 822, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 845, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 847, - "line_end": 856, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 897, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 927, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 929, - "line_end": 943, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 949, - "column_start": 0, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 951, - "line_end": 969, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 971, - "line_end": 975, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 977, - "line_end": 983, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 985, - "line_end": 995, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1003, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 1005, - "line_end": 1013, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 1015, - "line_end": 1018, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 1026, - "line_end": 1032, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split_lines", - "name": "split_lines", - "symbol_type": "Function", - "file_path": "", - "line_start": 1034, - "line_end": 1044, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_comments", - "name": "remove_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 1046, - "line_end": 1058, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_string_literals", - "name": "remove_string_literals", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1068, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file", - "name": "read_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 1070, - "line_end": 1090, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_basic_file_info", - "name": "get_basic_file_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 1092, - "line_end": 1117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_format_timestamp", - "name": "format_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 1119, - "line_end": 1124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_format_file_size", - "name": "format_file_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 1126, - "line_end": 1139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hybrid_stack_manager.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/hybrid_stack_manager.hpp", - "language": "cpp", - "size_bytes": 7634, - "total_lines": 208, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.786319565Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_HybridStackManager", - "name": "HybridStackManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 4, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_with_smart_stack", - "name": "analyze_with_smart_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_with_preemptive_expansion", - "name": "analyze_with_preemptive_expansion", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_with_error_driven_retry", - "name": "analyze_with_error_driven_retry", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_retry_with_expanded_stack", - "name": "retry_with_expanded_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fallback_to_simple_analysis", - "name": "fallback_to_simple_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_HybridStackManager", - "name": "HybridStackManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rlimit", - "name": "rlimit", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 4, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rlimit", - "name": "rlimit", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 8, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "language_detection.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/language_detection.cpp", - "language": "cpp", - "size_bytes": 20419, - "total_lines": 542, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.789325368Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 174, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 338, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 346, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 358, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 383, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 498, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 540, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_commands.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/session_commands.cpp", - "language": "cpp", - "size_bytes": 116812, - "total_lines": 2872, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.798390003Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 286, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 381, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 458, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 485, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 512, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 520, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 654, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 662, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 670, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 731, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 839, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 841, - "line_end": 1017, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1195, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1197, - "line_end": 1203, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_symbol_name", - "name": "parse_symbol_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 1206, - "line_end": 1244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_detect_language_from_pattern", - "name": "detect_language_from_pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 1247, - "line_end": 1254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_universal_method", - "name": "is_universal_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1257, - "line_end": 1271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create_hierarchical_structure", - "name": "create_hierarchical_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1339, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1341, - "line_end": 1431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1433, - "line_end": 1597, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 1603, - "line_end": 1671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 1673, - "line_end": 1762, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 1764, - "line_end": 1864, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 1866, - "line_end": 1953, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1959, - "line_end": 2068, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 2074, - "line_end": 2244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 2250, - "line_end": 2387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 2393, - "line_end": 2444, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 2450, - "line_end": 2501, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 2507, - "line_end": 2699, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 2705, - "line_end": 2870, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FunctionComplexity", - "name": "FunctionComplexity", - "symbol_type": "Class", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_data.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/session_data.cpp", - "language": "cpp", - "size_bytes": 21337, - "total_lines": 444, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.803537791Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 424, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_timestamp_to_string", - "name": "timestamp_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 435, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_to_timestamp", - "name": "string_to_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_manager.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/core/session_manager.cpp", - "language": "cpp", - "size_bytes": 27762, - "total_lines": 651, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.807012811Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 551, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 571, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 583, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 592, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 626, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 638, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "symbol_finder.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/finders/symbol_finder.cpp", - "language": "cpp", - "size_bytes": 16904, - "total_lines": 461, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.811372854Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 205, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 216, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 296, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 389, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 438, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 451, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 459, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "formatters.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/formatters/formatters.cpp", - "language": "cpp", - "size_bytes": 15111, - "total_lines": 352, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.815562968Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 251, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 297, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 333, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/legacy/pegtl_analyzer.cpp", - "language": "cpp", - "size_bytes": 10391, - "total_lines": 268, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.819549853Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 152, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 195, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 200, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 205, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 210, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 220, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 230, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_to_analysis_result", - "name": "convert_to_analysis_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 260, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_version_info", - "name": "get_version_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/legacy/tree_sitter_analyzer.cpp", - "language": "cpp", - "size_bytes": 33134, - "total_lines": 834, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.823308012Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_has_extension", - "name": "has_extension", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 0, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 185, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 314, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 328, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 420, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 521, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 550, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 591, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 699, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 709, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 780, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 782, - "line_end": 785, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 787, - "line_end": 789, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 808, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_supported_languages", - "name": "get_supported_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 812, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 814, - "line_end": 821, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_version_info", - "name": "get_version_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 823, - "line_end": 830, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_placeholder.c", - "path": "./development/archive/development_history/tools/nekocode/src/legacy/tree_sitter_placeholder.c", - "language": "c", - "size_bytes": 8681, - "total_lines": 301, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.825980951Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_node_impl_to_node", - "name": "node_impl_to_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_parser_delete", - "name": "ts_parser_delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_parser_set_language", - "name": "ts_parser_set_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_delete", - "name": "ts_tree_delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_root_node", - "name": "ts_tree_root_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_start_byte", - "name": "ts_node_start_byte", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_end_byte", - "name": "ts_node_end_byte", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_start_point", - "name": "ts_node_start_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_end_point", - "name": "ts_node_end_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 217, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 230, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_child_count", - "name": "ts_node_child_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_child", - "name": "ts_node_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 246, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_is_null", - "name": "ts_node_is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_is_named", - "name": "ts_node_is_named", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_node_has_error", - "name": "ts_node_has_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 260, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_cursor_new", - "name": "ts_tree_cursor_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_cursor_delete", - "name": "ts_tree_cursor_delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_cursor_goto_first_child", - "name": "ts_tree_cursor_goto_first_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 283, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_cursor_goto_next_sibling", - "name": "ts_tree_cursor_goto_next_sibling", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ts_tree_cursor_current_node", - "name": "ts_tree_cursor_current_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSParser", - "name": "TSParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 10, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSTree", - "name": "TSTree", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSTreeCursor", - "name": "TSTreeCursor", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 38, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 7, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 12, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 7, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 7, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 7, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSLanguage", - "name": "TSLanguage", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 7, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 8, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 53, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 200, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 210, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 220, - "line_end": 220, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TSNodeImpl", - "name": "TSNodeImpl", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 4, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "command_dispatcher.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/main/command_dispatcher.cpp", - "language": "cpp", - "size_bytes": 6434, - "total_lines": 176, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.829302066Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "command_line_args.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/main/command_line_args.cpp", - "language": "cpp", - "size_bytes": 2812, - "total_lines": 68, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.831098766Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_args", - "name": "parse_args", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main_ai.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/main/main_ai.cpp", - "language": "cpp", - "size_bytes": 33015, - "total_lines": 793, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.834427539Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_show_supported_languages", - "name": "show_supported_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_show_help", - "name": "show_help", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_show_performance_report", - "name": "show_performance_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 172, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_target", - "name": "analyze_target", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_generate_session_id", - "name": "generate_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 398, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update_session_state", - "name": "update_session_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 428, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_quick_project_scan", - "name": "quick_project_scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 494, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_execute_session_command", - "name": "execute_session_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 711, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_check_session_status", - "name": "check_session_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 793, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_ProjectScanResult", - "name": "ProjectScanResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 382, - "line_end": 388, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_system.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/memory/memory_system.cpp", - "language": "cpp", - "size_bytes": 21051, - "total_lines": 575, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.839355008Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_memory_type_to_string", - "name": "memory_type_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_to_memory_type", - "name": "string_to_memory_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 178, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 225, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 261, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 351, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 367, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 397, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 413, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 486, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 490, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 495, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 499, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 509, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 521, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 525, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 532, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 539, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 548, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 568, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 570, - "line_end": 572, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_system.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/memory/memory_system.hpp", - "language": "cpp", - "size_bytes": 9703, - "total_lines": 236, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.842202596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_MemoryEntry", - "name": "MemoryEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_MemoryQuery", - "name": "MemoryQuery", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 4, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_MemoryEntry", - "name": "MemoryEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemoryQuery", - "name": "MemoryQuery", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemoryTransport", - "name": "MemoryTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemMemoryTransport", - "name": "FileSystemMemoryTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemoryManager", - "name": "MemoryManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MemorySystem", - "name": "MemorySystem", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "language_traits.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/language_traits.cpp", - "language": "cpp", - "size_bytes": 98, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.845956782Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "language_traits.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/language_traits.hpp", - "language": "cpp", - "size_bytes": 19928, - "total_lines": 581, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.848788031Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 286, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 365, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 431, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 439, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 445, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 486, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_56", - "name": "function_56", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 502, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 519, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_60", - "name": "function_60", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 535, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 540, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 545, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 577, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_BaseLanguageTraits", - "name": "BaseLanguageTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_JavaScriptTraits", - "name": "JavaScriptTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TypeScriptTraits", - "name": "TypeScriptTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PythonTraits", - "name": "PythonTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 203, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CppTraits", - "name": "CppTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CSharpTraits", - "name": "CSharpTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 277, - "line_end": 366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_GoTraits", - "name": "GoTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 372, - "line_end": 467, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_RustTraits", - "name": "RustTraits", - "symbol_type": "Class", - "file_path": "", - "line_start": 473, - "line_end": 578, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal_code_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/universal_code_analyzer.cpp", - "language": "cpp", - "size_bytes": 106, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.850830998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal_code_analyzer.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/universal_code_analyzer.hpp", - "language": "cpp", - "size_bytes": 10735, - "total_lines": 274, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.852884248Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UniversalCodeAnalyzer", - "name": "UniversalCodeAnalyzer", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 253, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UniversalCodeAnalyzer", - "name": "UniversalCodeAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 267, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal_tree_builder.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/universal_tree_builder.cpp", - "language": "cpp", - "size_bytes": 105, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.854655518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal_tree_builder.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/universal/universal_tree_builder.hpp", - "language": "cpp", - "size_bytes": 8839, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.856603722Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UniversalTreeBuilder", - "name": "UniversalTreeBuilder", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UniversalTreeBuilder", - "name": "UniversalTreeBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 239, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_size_reporter.hpp", - "path": "./development/archive/development_history/tools/nekocode/src/utils/file_size_reporter.hpp", - "language": "cpp", - "size_bytes": 2721, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.859644722Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSizeReporter", - "name": "FileSizeReporter", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "include_analyzer.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/utils/include_analyzer.cpp", - "language": "cpp", - "size_bytes": 23917, - "total_lines": 598, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.862754230Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 337, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 385, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 438, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 498, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 515, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 533, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 555, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_include_statement", - "name": "parse_include_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 575, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_normalize_include_path", - "name": "normalize_include_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 596, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "progress_tracker.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/utils/progress_tracker.cpp", - "language": "cpp", - "size_bytes": 11424, - "total_lines": 317, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.865812454Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 200, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 215, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 220, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 230, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 245, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 262, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 280, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8_utils.cpp", - "path": "./development/archive/development_history/tools/nekocode/src/utils/utf8_utils.cpp", - "language": "cpp", - "size_bytes": 18439, - "total_lines": 566, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.868871426Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_remove_bom", - "name": "remove_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid_utf8", - "name": "is_valid_utf8", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8_length", - "name": "utf8_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split_lines_safe", - "name": "split_lines_safe", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_substr_safe", - "name": "substr_safe", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_js_identifier_char", - "name": "is_js_identifier_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_cpp_identifier_char", - "name": "is_cpp_identifier_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_ascii", - "name": "is_ascii", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_classify_unicode_char", - "name": "classify_unicode_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 211, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_ascii_only", - "name": "is_ascii_only", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 224, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_non_ascii_chars", - "name": "find_non_ascii_chars", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 239, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8_to_utf32", - "name": "utf8_to_utf32", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 260, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf32_to_utf8", - "name": "utf32_to_utf8", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 282, - "column_start": 0, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 306, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 312, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid_identifier", - "name": "is_valid_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_string_literals", - "name": "remove_string_literals", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_regex_literals", - "name": "remove_regex_literals", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 376, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid_identifier", - "name": "is_valid_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 402, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_string_literals", - "name": "remove_string_literals", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 420, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_comments", - "name": "remove_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 434, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_preprocessor", - "name": "remove_preprocessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 439, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_detect_encoding", - "name": "detect_encoding", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 485, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_encoding_to_string", - "name": "encoding_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 499, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_file_safe_utf8", - "name": "read_file_safe_utf8", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyashc_v3.py", - "path": "./development/archive/legacy_src/nyashc_v3.py", - "language": "python", - "size_bytes": 3412, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.883233297Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_compile_nyash", - "name": "compile_nyash", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 60, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run_llvm_ir", - "name": "run_llvm_ir", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 88, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 111, - "column_start": 0, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v3 tokenize, Parser", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_ir_gen_v3 NyashIRGeneratorV3", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_to_llvm_v3 NyashToLLVMV3", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyashc_v4.py", - "path": "./development/archive/legacy_src/nyashc_v4.py", - "language": "python", - "size_bytes": 52985, - "total_lines": 1330, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.890840110Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___repr__", - "name": "__repr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 35, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 87, - "column_start": 4, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 114, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_current_token", - "name": "current_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 128, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 137, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 142, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_program", - "name": "parse_program", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 158, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 221, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_assignment", - "name": "parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 263, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_nowait", - "name": "parse_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 312, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 324, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_loop", - "name": "parse_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 351, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_if", - "name": "parse_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 388, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 420, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_return", - "name": "parse_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 434, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_box", - "name": "parse_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 497, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_global_box", - "name": "parse_global_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 519, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_singleton_box", - "name": "parse_singleton_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 526, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_arrow_call", - "name": "parse_arrow_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 554, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_expression", - "name": "parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 558, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_comparison", - "name": "parse_comparison", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 575, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_additive", - "name": "parse_additive", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 592, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_multiplicative", - "name": "parse_multiplicative", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 609, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_method_call", - "name": "parse_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 637, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 687, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_parenthesized_expression", - "name": "parse_parenthesized_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 689, - "line_end": 710, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_new_expression", - "name": "parse_new_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 712, - "line_end": 731, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 741, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 746, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_processData", - "name": "processData", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 752, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_announce", - "name": "announce", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 757, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 759, - "line_end": 760, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getName", - "name": "getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 763, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 766, - "line_end": 768, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_interpret", - "name": "interpret", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 781, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute_statement_with_env", - "name": "execute_statement_with_env", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 804, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute_statement", - "name": "execute_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 806, - "line_end": 1025, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 863, - "line_end": 865, - "column_start": 16, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "interpreter", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "statements", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 867, - "line_end": 871, - "column_start": 16, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 884, - "line_end": 886, - "column_start": 16, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "interpreter", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "statements", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 888, - "line_end": 893, - "column_start": 16, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 907, - "line_end": 911, - "column_start": 16, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "interpreter", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "statements", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "func_name", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 913, - "line_end": 924, - "column_start": 16, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 944, - "line_end": 946, - "column_start": 20, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "interpreter", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "statements", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 973, - "column_start": 20, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute_arrow_call", - "name": "execute_arrow_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1027, - "line_end": 1062, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate_expression", - "name": "evaluate_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1212, - "column_start": 4, - "column_end": 89, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_new_object", - "name": "create_new_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 1214, - "line_end": 1287, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_and_run", - "name": "compile_and_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 1291, - "line_end": 1322, - "column_start": 0, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashToken", - "name": "NyashToken", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 0, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__repr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 114, - "column_start": 0, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "tokenize" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 731, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "current_token", - "consume", - "peek", - "parse_program", - "parse_statement", - "parse_assignment", - "parse_nowait", - "parse_print", - "parse_loop", - "parse_if", - "parse_function", - "parse_return", - "parse_box", - "parse_global_box", - "parse_singleton_box", - "parse_arrow_call", - "parse_expression", - "parse_comparison", - "parse_additive", - "parse_multiplicative", - "parse_method_call", - "parse_primary", - "parse_parenthesized_expression", - "parse_new_expression" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashBox", - "name": "NyashBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 735, - "line_end": 763, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "getName" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 765, - "line_end": 1287, - "column_start": 0, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "interpret", - "execute_statement_with_env", - "execute_statement", - "execute_arrow_call", - "evaluate_expression", - "create_new_object" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_LoopBodyExecutor", - "name": "LoopBodyExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 862, - "line_end": 871, - "column_start": 12, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IfBodyExecutor", - "name": "IfBodyExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 883, - "line_end": 893, - "column_start": 12, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionBodyExecutor", - "name": "FunctionBodyExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 906, - "line_end": 924, - "column_start": 12, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_MethodBodyExecutor", - "name": "MethodBodyExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 943, - "line_end": 973, - "column_start": 16, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyash_v4_async_complete AsyncArrowBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "nyash_v4_p2p_capsule public", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 18 - }, - { - "module": "nyash_v4_error_handling ErrorHandlingArrowBox, ResultBox, ErrorBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 19 - }, - { - "module": "nyash_v4_loops LoopBox, BreakBox, ContinueBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 20 - }, - { - "module": "nyash_v4_core IfBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 21 - }, - { - "module": "nyash_v4_functions FunctionBox, ReturnBox, FunctionCallBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 22 - }, - { - "module": "nyash_v4_classes ClassBox, InstanceBox, NewBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 23 - }, - { - "module": "nyash_v4_globals GlobalBox, GlobalRefBox, SingletonBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 24 - }, - { - "module": "nyash_v4_core FileBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1256 - }, - { - "module": "nyash_v4_core ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1263 - }, - { - "module": "nyash_v4_core ErrorBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1267 - }, - { - "module": "nyash_v4_core ResultBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1274 - }, - { - "module": "nyash_v4_core TryBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1281 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1321 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_ir_gen_v3.py", - "path": "./development/archive/legacy_src/nyash_ir_gen_v3.py", - "language": "python", - "size_bytes": 13636, - "total_lines": 405, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.899455829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 16, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_indent", - "name": "indent", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "line", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_label", - "name": "new_label", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_string_const", - "name": "new_string_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 58, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "ast_nodes", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_collect_strings", - "name": "collect_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "ast_nodes", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_collect_strings_from_block", - "name": "collect_strings_from_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 78, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "block", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_collect_strings_from_stmt", - "name": "collect_strings_from_stmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 89, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "stmt", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_box", - "name": "gen_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 100, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_function", - "name": "gen_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 142, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_declaration", - "name": "gen_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 166, - "column_start": 4, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_statement", - "name": "gen_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 204, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_if", - "name": "gen_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 236, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_for", - "name": "gen_for", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 281, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_block_body", - "name": "gen_block_body", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 297, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_gen_expr", - "name": "gen_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 352, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashIRGeneratorV3", - "name": "NyashIRGeneratorV3", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 352, - "column_start": 0, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "indent", - "emit", - "new_temp", - "new_label", - "new_string_const", - "generate", - "collect_strings", - "collect_strings_from_block", - "collect_strings_from_stmt", - "gen_box", - "gen_function", - "gen_declaration", - "gen_statement", - "gen_if", - "gen_for", - "gen_block_body", - "gen_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "nyash_v3 *", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_pegtl_grammar.hpp", - "path": "./development/archive/legacy_src/nyash_pegtl_grammar.hpp", - "language": "cpp", - "size_bytes": 9542, - "total_lines": 346, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.905231838Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 306, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 318, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_literal", - "name": "string_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number_literal", - "name": "number_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_newline", - "name": "newline", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 0, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_single_comment", - "name": "single_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignore", - "name": "ignore", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_new_keyword", - "name": "new_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nowait_keyword", - "name": "nowait_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_keyword", - "name": "print_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_box_keyword", - "name": "file_box_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_box_keyword", - "name": "array_box_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_error_box_keyword", - "name": "error_box_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_result_box_keyword", - "name": "result_box_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_box_keyword", - "name": "box_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_box_type", - "name": "box_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 63, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assign_op", - "name": "assign_op", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plus_op", - "name": "plus_op", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 0, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dot_op", - "name": "dot_op", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lparen", - "name": "lparen", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rparen", - "name": "rparen", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comma", - "name": "comma", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 0, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression_list", - "name": "expression_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_argument_list", - "name": "argument_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method_call", - "name": "method_call", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 101, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_box_creation", - "name": "box_creation", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 113, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_p2p_chain", - "name": "p2p_chain", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 128, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_p2p_method_call", - "name": "p2p_method_call", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 140, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_primary_expression", - "name": "primary_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 150, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_additive_expression", - "name": "additive_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 161, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression_list", - "name": "expression_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_statement", - "name": "print_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 184, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignment_statement", - "name": "assignment_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 193, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nowait_assignment", - "name": "nowait_assignment", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 204, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression_statement", - "name": "expression_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 0, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement", - "name": "statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 219, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_program", - "name": "program", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 231, - "column_start": 0, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyashParseState", - "name": "NyashParseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 276, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nyash_action", - "name": "nyash_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 287, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 307, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 311, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 323, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 335, - "line_end": 343, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_pegtl_interpreter.hpp", - "path": "./development/archive/legacy_src/nyash_pegtl_interpreter.hpp", - "language": "cpp", - "size_bytes": 19150, - "total_lines": 577, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.908678604Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_StringValue", - "name": "StringValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NumberValue", - "name": "NumberValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ArrayValue", - "name": "ArrayValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 4, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileValue", - "name": "FileValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 4, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 4, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ErrorValue", - "name": "ErrorValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 262, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PValue", - "name": "P2PValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 301, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 302, - "column_start": 4, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 367, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 377, - "column_start": 4, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 379, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 444, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 525, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 541, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 555, - "line_end": 569, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_RuntimeValue", - "name": "RuntimeValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StringValue", - "name": "StringValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NumberValue", - "name": "NumberValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ArrayValue", - "name": "ArrayValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileValue", - "name": "FileValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ErrorValue", - "name": "ErrorValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PValue", - "name": "P2PValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StringValue", - "name": "StringValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NumberValue", - "name": "NumberValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ArrayValue", - "name": "ArrayValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 199, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileValue", - "name": "FileValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ErrorValue", - "name": "ErrorValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PValue", - "name": "P2PValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 284, - "line_end": 321, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ExecutionEnvironment", - "name": "ExecutionEnvironment", - "symbol_type": "Class", - "file_path": "", - "line_start": 327, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 361, - "line_end": 574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_pegtl_parser.hpp", - "path": "./development/archive/legacy_src/nyash_pegtl_parser.hpp", - "language": "cpp", - "size_bytes": 17398, - "total_lines": 574, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.911931546Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ASTNode", - "name": "ASTNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 70, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TokenStream", - "name": "TokenStream", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyashParser", - "name": "NyashParser", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 199, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 532, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TokenStream", - "name": "TokenStream", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ParserState", - "name": "ParserState", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 571, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_pegtl_tokenizer.hpp", - "path": "./development/archive/legacy_src/nyash_pegtl_tokenizer.hpp", - "language": "cpp", - "size_bytes": 13920, - "total_lines": 424, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.915007490Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Token", - "name": "Token", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 73, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 240, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 331, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 388, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 396, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TokenizerState", - "name": "TokenizerState", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tokenizer_action", - "name": "tokenizer_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 166, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 200, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 203, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 211, - "line_end": 216, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 219, - "line_end": 224, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 241, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 249, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 265, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 277, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 290, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 294, - "line_end": 320, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 326, - "line_end": 421, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token_element", - "name": "token_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 341, - "line_end": 360, - "column_start": 12, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tokenize_program", - "name": "tokenize_program", - "symbol_type": "Class", - "file_path": "", - "line_start": 362, - "line_end": 370, - "column_start": 12, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_to_llvm_v3.py", - "path": "./development/archive/legacy_src/nyash_to_llvm_v3.py", - "language": "python", - "size_bytes": 14134, - "total_lines": 415, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.918612870Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 58, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_collect_string_constants", - "name": "collect_string_constants", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_header", - "name": "emit_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 83, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_string_constants", - "name": "emit_string_constants", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 94, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_box", - "name": "convert_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 117, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_function", - "name": "convert_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 161, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_init_block", - "name": "convert_init_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 172, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_body_block", - "name": "convert_body_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 191, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_fini_block", - "name": "convert_fini_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 211, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_cleanup_block", - "name": "convert_cleanup_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 232, - "column_start": 4, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_instruction", - "name": "convert_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 338, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_runtime_functions", - "name": "emit_runtime_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 354, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashToLLVMV3", - "name": "NyashToLLVMV3", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 354, - "column_start": 0, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "emit", - "new_temp", - "convert", - "collect_string_constants", - "emit_header", - "emit_string_constants", - "convert_box", - "convert_function", - "convert_init_block", - "convert_body_block", - "convert_fini_block", - "convert_cleanup_block", - "convert_instruction", - "emit_runtime_functions" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "typing List, Dict, Set", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v3 *", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 359 - }, - { - "module": "nyash_ir_gen_v3 NyashIRGeneratorV3", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 360 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v3.py", - "path": "./development/archive/legacy_src/nyash_v3.py", - "language": "python", - "size_bytes": 20795, - "total_lines": 668, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.924484148Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___repr__", - "name": "__repr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 17, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 112, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 133, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 137, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 141, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 147, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 158, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 167, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 171, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 175, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 179, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 183, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 187, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 200, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_current", - "name": "current", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 211, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 223, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 229, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_box", - "name": "parse_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function", - "name": "parse_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 249, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_block", - "name": "parse_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 267, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_init", - "name": "parse_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 278, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_fini", - "name": "parse_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 289, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_declaration", - "name": "parse_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 309, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 325, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 333, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print_str", - "name": "parse_print_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 341, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_if", - "name": "parse_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 355, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_for", - "name": "parse_for", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_assignment", - "name": "parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 375, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_expr", - "name": "parse_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 378, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_or", - "name": "parse_or", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 388, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_and", - "name": "parse_and", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 398, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_equality", - "name": "parse_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 408, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_relational", - "name": "parse_relational", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 418, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_additive", - "name": "parse_additive", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 428, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_multiplicative", - "name": "parse_multiplicative", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 438, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_unary", - "name": "parse_unary", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 446, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 469, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 476, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_function", - "name": "eval_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 487, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_block", - "name": "eval_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 497, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_init", - "name": "eval_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 521, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_fini", - "name": "eval_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 525, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_statement", - "name": "eval_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 569, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_eval_expr", - "name": "eval_expr", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 621, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 17, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__repr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 116, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoxNode", - "name": "BoxNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionNode", - "name": "FunctionNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BlockNode", - "name": "BlockNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_InitNode", - "name": "InitNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FiniNode", - "name": "FiniNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_DeclNode", - "name": "DeclNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 147, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AssignNode", - "name": "AssignNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 152, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BinOpNode", - "name": "BinOpNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 158, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_UnaryOpNode", - "name": "UnaryOpNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 163, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NumberNode", - "name": "NumberNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoolNode", - "name": "BoolNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_StringNode", - "name": "StringNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VarNode", - "name": "VarNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintNode", - "name": "PrintNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintStrNode", - "name": "PrintStrNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IfNode", - "name": "IfNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ForNode", - "name": "ForNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 200, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Parser", - "name": "Parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 203, - "line_end": 469, - "column_start": 0, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "current", - "peek", - "consume", - "parse", - "parse_box", - "parse_function", - "parse_block", - "parse_init", - "parse_fini", - "parse_declaration", - "parse_statement", - "parse_print", - "parse_print_str", - "parse_if", - "parse_for", - "parse_assignment", - "parse_expr", - "parse_or", - "parse_and", - "parse_equality", - "parse_relational", - "parse_additive", - "parse_multiplicative", - "parse_unary", - "parse_primary" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Evaluator", - "name": "Evaluator", - "symbol_type": "Class", - "file_path": "", - "line_start": 472, - "line_end": 621, - "column_start": 0, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "eval", - "eval_function", - "eval_block", - "eval_init", - "eval_fini", - "eval_statement", - "eval_expr" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_arrow_syntax.py", - "path": "./development/archive/legacy_src/nyash_v4_arrow_syntax.py", - "language": "python", - "size_bytes": 10540, - "total_lines": 303, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.930375243Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___rshift__", - "name": "__rshift__", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "target", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_subscribe", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_event", - "name": "_handle_event", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 46, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_receiveArrowCall", - "name": "receiveArrowCall", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 64, - "column_start": 4, - "column_end": 76, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "target", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___getattr__", - "name": "__getattr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 90, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_method_call", - "name": "method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 88, - "column_start": 8, - "column_end": 76, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__single_call", - "name": "_single_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 98, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__broadcast_call", - "name": "_broadcast_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 110, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 118, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_is_done", - "name": "is_done", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 138, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 145, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 148, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 156, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 159, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 162, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getName", - "name": "getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 181, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 189, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__on_message", - "name": "_on_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 196, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__on_user_joined", - "name": "_on_user_joined", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 201, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__on_user_left", - "name": "_on_user_left", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 206, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_arrow", - "name": "arrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 0, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "target", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_greet", - "name": "greet", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 225, - "column_start": 8, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_notify_join", - "name": "notify_join", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "chat_box", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_send_msg", - "name": "send_msg", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "sender", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "text", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_slow_process", - "name": "slow_process", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 8, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ArrowBox", - "name": "ArrowBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 64, - "column_start": 0, - "column_end": 76, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__rshift__", - "subscribe", - "_handle_event" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArrowCall", - "name": "ArrowCall", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 110, - "column_start": 0, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__getattr__", - "_single_call", - "_broadcast_call" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AsyncExecutor", - "name": "AsyncExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 123, - "column_start": 0, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FutureBox", - "name": "FutureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 148, - "column_start": 0, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "get", - "is_done", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 162, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArrowChatBox", - "name": "ArrowChatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 206, - "column_start": 0, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_on_message", - "_on_user_joined", - "_on_user_left" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SimpleBox", - "name": "SimpleBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 225, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SlowBox", - "name": "SlowBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 277, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Any, Callable, Dict, List, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "asyncio", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "threading", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "concurrent.futures Future, ThreadPoolExecutor", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_p2p_capsule CapsuleLinkableBox, public", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 275 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 284 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_async_complete.py", - "path": "./development/archive/legacy_src/nyash_v4_async_complete.py", - "language": "python", - "size_bytes": 13159, - "total_lines": 373, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.935377532Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___rshift__", - "name": "__rshift__", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "target", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_receiveAsyncCall", - "name": "receiveAsyncCall", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 44, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_shutdown", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "target", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___getattr__", - "name": "__getattr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 71, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_method_call", - "name": "method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 8, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__sync_call", - "name": "_sync_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__async_call", - "name": "_async_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__single_sync", - "name": "_single_sync", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__single_async", - "name": "_single_async", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 100, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__broadcast_sync", - "name": "_broadcast_sync", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__broadcast_async", - "name": "_broadcast_async", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 121, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 138, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_then", - "name": "then", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 159, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_wrapped_callback", - "name": "wrapped_callback", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 147, - "column_start": 8, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "future", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_chain_callback", - "name": "chain_callback", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 156, - "column_start": 8, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "f", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_is_done", - "name": "is_done", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_cancel", - "name": "cancel", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 180, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 183, - "column_start": 4, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_all", - "name": "get_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 202, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_first", - "name": "get_first", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 226, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_all_done", - "name": "all_done", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 4, - "column_end": 85, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 237, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 240, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 250, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_process_data", - "name": "process_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_status", - "name": "get_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 265, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_double_it", - "name": "double_it", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 352, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "result", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_print_it", - "name": "print_it", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "result", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_AsyncArrowBox", - "name": "AsyncArrowBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 48, - "column_start": 0, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__rshift__", - "shutdown" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AsyncArrowCall", - "name": "AsyncArrowCall", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 121, - "column_start": 0, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__getattr__", - "_sync_call", - "_async_call", - "_single_sync", - "_single_async", - "_broadcast_sync", - "_broadcast_async" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AsyncFutureBox", - "name": "AsyncFutureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 183, - "column_start": 0, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "get", - "then", - "is_done", - "cancel", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AsyncFutureGroup", - "name": "AsyncFutureGroup", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 240, - "column_start": 0, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "get_all", - "get_first", - "all_done", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AsyncWorkerBox", - "name": "AsyncWorkerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 265, - "column_start": 0, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Any, Callable, Dict, List, Optional, Union", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "concurrent.futures Future, ThreadPoolExecutor, TimeoutError", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_p2p_capsule CapsuleLinkableBox, public", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_arrow_syntax ArrowBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "concurrent.futures", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 206 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_auto_cleanup.py", - "path": "./development/archive/legacy_src/nyash_v4_auto_cleanup.py", - "language": "python", - "size_bytes": 15411, - "total_lines": 374, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.941039006Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 4, - "column_end": 84, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_track_creation", - "name": "track_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 4, - "column_end": 101, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_track_dependency", - "name": "track_dependency", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 136, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_mark_manual_cleanup", - "name": "mark_manual_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_auto_cleanup_all", - "name": "auto_cleanup_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 62, - "column_start": 4, - "column_end": 116, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__calculate_cleanup_order", - "name": "_calculate_cleanup_order", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 89, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_cleanup_report", - "name": "get_cleanup_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 103, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_init", - "name": "_perform_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 135, - "column_start": 4, - "column_end": 87, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 147, - "column_start": 4, - "column_end": 90, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_manual_fini", - "name": "manual_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 153, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_dependency", - "name": "add_dependency", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 161, - "column_start": 4, - "column_end": 94, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 164, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 167, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 181, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_init", - "name": "_perform_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 201, - "column_start": 4, - "column_end": 109, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 210, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_disable_auto_cleanup", - "name": "disable_auto_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_cleanup_report", - "name": "get_cleanup_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 235, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_should_auto_cleanup", - "name": "should_auto_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 254, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_auto_cleanup_all", - "name": "auto_cleanup_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 274, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ResourceTracker", - "name": "ResourceTracker", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 103, - "column_start": 0, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "track_creation", - "track_dependency", - "mark_manual_cleanup", - "auto_cleanup_all", - "_calculate_cleanup_order", - "get_cleanup_report" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AutoCleanupBox", - "name": "AutoCleanupBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 167, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_perform_init", - "_perform_fini", - "manual_fini", - "add_dependency", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AutoCleanupFunctionBox", - "name": "AutoCleanupFunctionBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 218, - "column_start": 0, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_perform_init", - "_perform_fini", - "disable_auto_cleanup", - "get_cleanup_report" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SmartResourceTracker", - "name": "SmartResourceTracker", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 274, - "column_start": 0, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "should_auto_cleanup", - "auto_cleanup_all" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Dict, Optional, Set, Any, Tuple", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 281 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 282 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_classes.py", - "path": "./development/archive/legacy_src/nyash_v4_classes.py", - "language": "python", - "size_bytes": 7079, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.945881668Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 25, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 39, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 95, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 66, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 80, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call_method", - "name": "call_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 102, - "column_start": 4, - "column_end": 94, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_has_method", - "name": "has_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 114, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 121, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 146, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 153, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 156, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ClassBox", - "name": "ClassBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 52, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "create", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_InstanceBox", - "name": "InstanceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 121, - "column_start": 0, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "set_field", - "get_field", - "call_method", - "has_method", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NewBox", - "name": "NewBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 156, - "column_start": 0, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_variables AssignBox, PrintBox, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 161 - }, - { - "module": "nyash_v4_core BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 162 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_collections.py", - "path": "./development/archive/legacy_src/nyash_v4_collections.py", - "language": "python", - "size_bytes": 9812, - "total_lines": 289, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.950665661Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 46, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isEmpty", - "name": "isEmpty", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_remove", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 81, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_indexOf", - "name": "indexOf", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 88, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 99, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 113, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___len__", - "name": "__len__", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___getitem__", - "name": "__getitem__", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___setitem__", - "name": "__setitem__", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___iter__", - "name": "__iter__", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 138, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_to_python_list", - "name": "to_python_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 152, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 159, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 162, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 165, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 173, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 185, - "column_start": 4, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 188, - "column_start": 4, - "column_end": 103, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 191, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 194, - "column_start": 4, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 208, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 211, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 214, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ArrayBox", - "name": "ArrayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 142, - "column_start": 0, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "add", - "get", - "set", - "size", - "isEmpty", - "clear", - "remove", - "contains", - "indexOf", - "toString", - "equals", - "copy", - "__len__", - "__getitem__", - "__setitem__", - "__iter__", - "to_python_list" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArrayAddBox", - "name": "ArrayAddBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 165, - "column_start": 0, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArrayGetBox", - "name": "ArrayGetBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 194, - "column_start": 0, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArraySizeBox", - "name": "ArraySizeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 214, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Any, TypeVar, Generic", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_comparisons.py", - "path": "./development/archive/legacy_src/nyash_v4_comparisons.py", - "language": "python", - "size_bytes": 12072, - "total_lines": 355, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.955919704Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 32, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_operand", - "name": "_evaluate_operand", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 43, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 46, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 49, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_operand", - "name": "_evaluate_operand", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 77, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 80, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 83, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 101, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_operand", - "name": "_evaluate_operand", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 108, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 111, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 114, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 117, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 132, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 135, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 138, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 145, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 154, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 157, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 160, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 167, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 173, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 179, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 182, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 191, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 199, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_to_bool", - "name": "_evaluate_to_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 214, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 217, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 220, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 223, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 230, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 238, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_to_bool", - "name": "_evaluate_to_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 251, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 254, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 257, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 260, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_to_bool", - "name": "_evaluate_to_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 283, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 286, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 289, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 292, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_LessThanBox", - "name": "LessThanBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 49, - "column_start": 0, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_operand", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_GreaterThanBox", - "name": "GreaterThanBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 83, - "column_start": 0, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_operand", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_EqualsBox", - "name": "EqualsBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 117, - "column_start": 0, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_operand", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NotEqualsBox", - "name": "NotEqualsBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 138, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_LessOrEqualBox", - "name": "LessOrEqualBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 160, - "column_start": 0, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_GreaterOrEqualBox", - "name": "GreaterOrEqualBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 182, - "column_start": 0, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AndBox", - "name": "AndBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 223, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_to_bool", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_OrBox", - "name": "OrBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 260, - "column_start": 0, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_to_bool", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NotBox", - "name": "NotBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 262, - "line_end": 292, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_evaluate_to_bool", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 296 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_core.py", - "path": "./development/archive/legacy_src/nyash_v4_core.py", - "language": "python", - "size_bytes": 31319, - "total_lines": 905, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.962521374Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 32, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getType", - "name": "getType", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getId", - "name": "getId", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 70, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_init", - "name": "_perform_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 88, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___enter__", - "name": "__enter__", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___exit__", - "name": "__exit__", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "exc_type", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "exc_val", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "exc_tb", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__log_event", - "name": "_log_event", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 111, - "column_start": 4, - "column_end": 10, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLifecycleInfo", - "name": "getLifecycleInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 122, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 132, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_sub", - "name": "sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 135, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_mul", - "name": "mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 138, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_div", - "name": "div", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 141, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lessThan", - "name": "lessThan", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 144, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_greaterThan", - "name": "greaterThan", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 147, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lessOrEqual", - "name": "lessOrEqual", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 150, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_greaterOrEqual", - "name": "greaterOrEqual", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 153, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 156, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 164, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 173, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLength", - "name": "getLength", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_charAt", - "name": "charAt", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 185, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_substring", - "name": "substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_indexOf", - "name": "indexOf", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 211, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 233, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isDigit", - "name": "isDigit", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 241, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isAlpha", - "name": "isAlpha", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isSpace", - "name": "isSpace", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 253, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isAlphaNumeric", - "name": "isAlphaNumeric", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 259, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 275, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 279, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 287, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_replaceAll", - "name": "replaceAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 295, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_startsWith", - "name": "startsWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 299, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_endsWith", - "name": "endsWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 303, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toUpper", - "name": "toUpper", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 311, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toLower", - "name": "toLower", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 315, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 320, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 325, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 328, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_and_", - "name": "and_", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 337, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_or_", - "name": "or_", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 340, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_not_", - "name": "not_", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 343, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 346, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 351, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 354, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 362, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 375, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_setLocal", - "name": "setLocal", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 379, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLocal", - "name": "getLocal", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 383, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 386, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 389, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 395, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 403, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 426, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 429, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 432, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 444, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 463, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 466, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 469, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 472, - "column_start": 4, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_print_box", - "name": "print_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 477, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 531, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 539, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 554, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 561, - "column_start": 4, - "column_end": 118, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 566, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 576, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getEventCount", - "name": "getEventCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 580, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLastEvent", - "name": "getLastEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 586, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLifetimeSeconds", - "name": "getLifetimeSeconds", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 593, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 603, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 617, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 635, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "content", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 647, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_readLines", - "name": "readLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 663, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 666, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 671, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 674, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 683, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 689, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 693, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_pop", - "name": "pop", - "symbol_type": "Function", - "file_path": "", - "line_start": 695, - "line_end": 703, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 723, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "index", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 725, - "line_end": 727, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 729, - "line_end": 737, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 747, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 751, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 757, - "line_end": 763, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_error_type", - "name": "error_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 766, - "line_end": 767, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_message", - "name": "message", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 771, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_details", - "name": "details", - "symbol_type": "Function", - "file_path": "", - "line_start": 774, - "line_end": 775, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 777, - "line_end": 778, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 786, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 788, - "line_end": 789, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 803, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_ok", - "name": "ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 806, - "line_end": 808, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_err", - "name": "err", - "symbol_type": "Function", - "file_path": "", - "line_start": 811, - "line_end": 813, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isOk", - "name": "isOk", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 817, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isErr", - "name": "isErr", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 821, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getValue", - "name": "getValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 823, - "line_end": 828, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getError", - "name": "getError", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 835, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 837, - "line_end": 841, - "column_start": 4, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 849, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 851, - "line_end": 855, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 860, - "line_end": 864, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 896, - "column_start": 4, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 899, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 901, - "line_end": 902, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 905, - "column_start": 4, - "column_end": 79, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_Box", - "name": "Box", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 122, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "getType", - "getId", - "init", - "_perform_init", - "fini", - "_perform_fini", - "__enter__", - "__exit__", - "_log_event", - "getLifecycleInfo" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 164, - "column_start": 0, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "add", - "sub", - "mul", - "div", - "lessThan", - "greaterThan", - "lessOrEqual", - "greaterOrEqual", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 328, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "concat", - "getLength", - "charAt", - "length", - "substring", - "indexOf", - "split", - "isDigit", - "isAlpha", - "isSpace", - "isAlphaNumeric", - "join", - "find", - "replace", - "replaceAll", - "contains", - "startsWith", - "endsWith", - "trim", - "toUpper", - "toLower", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 330, - "line_end": 354, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "and_", - "or_", - "not_", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BlockBox", - "name": "BlockBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 395, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "setLocal", - "getLocal", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_IfBox", - "name": "IfBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 435, - "column_start": 0, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ForBox", - "name": "ForBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 437, - "line_end": 472, - "column_start": 0, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FloatBox", - "name": "FloatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 524, - "line_end": 539, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_LifecycleInfoBox", - "name": "LifecycleInfoBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 543, - "line_end": 593, - "column_start": 0, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy", - "getEventCount", - "getLastEvent", - "getLifetimeSeconds" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 596, - "line_end": 674, - "column_start": 0, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "read", - "write", - "exists", - "readLines", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ArrayBox", - "name": "ArrayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 677, - "line_end": 751, - "column_start": 0, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "push", - "add", - "pop", - "get", - "length", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 754, - "line_end": 789, - "column_start": 0, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ResultBox", - "name": "ResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 791, - "line_end": 855, - "column_start": 0, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "isOk", - "isErr", - "getValue", - "getError", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_TryBox", - "name": "TryBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 857, - "line_end": 905, - "column_start": 0, - "column_end": 79, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing Any, Optional, Dict, List, TYPE_CHECKING", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "abc ABC, abstractmethod", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 226 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 640 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 762 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_debug_utils.py", - "path": "./development/archive/legacy_src/nyash_v4_debug_utils.py", - "language": "python", - "size_bytes": 9142, - "total_lines": 270, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.969070780Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_inspect", - "name": "inspect", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 50, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_trace", - "name": "trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_dumpLogs", - "name": "dumpLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 67, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 70, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 73, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_measure", - "name": "measure", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 96, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "func", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_report", - "name": "report", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 112, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 115, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 118, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 121, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_trust", - "name": "trust", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 138, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_shareWith", - "name": "shareWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 153, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getShared", - "name": "getShared", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 159, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_explainError", - "name": "explainError", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 190, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 193, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 196, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 199, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_boxes", - "name": "create_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 227, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "n", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_DebugBox", - "name": "DebugBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 73, - "column_start": 0, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "inspect", - "trace", - "dumpLogs", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PerformanceBox", - "name": "PerformanceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 121, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "measure", - "report", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_TrustBox", - "name": "TrustBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 159, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "trust", - "shareWith", - "getShared" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FriendlyErrorBox", - "name": "FriendlyErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 199, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Any, Dict, List", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_p2p_capsule CapsuleLinkableBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 86 - }, - { - "module": "nyash_v4_p2p_capsule SecureMessageBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 209 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_error_handling.py", - "path": "./development/archive/legacy_src/nyash_v4_error_handling.py", - "language": "python", - "size_bytes": 15988, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.974144601Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_error_type", - "name": "error_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 31, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_message", - "name": "message", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 35, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_details", - "name": "details", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 39, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 42, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 53, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_stack_trace", - "name": "get_stack_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 73, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_ok", - "name": "ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_err", - "name": "err", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_from_exception", - "name": "from_exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 93, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_is_ok", - "name": "is_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_is_err", - "name": "is_err", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_unwrap", - "name": "unwrap", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 108, - "column_start": 4, - "column_end": 87, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_unwrap_or", - "name": "unwrap_or", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_unwrap_err", - "name": "unwrap_err", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 119, - "column_start": 4, - "column_end": 90, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_map", - "name": "map", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 130, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_map_err", - "name": "map_err", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 138, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_and_then", - "name": "and_then", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 148, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 4, - "column_end": 68, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 168, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_catch", - "name": "catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_catch_all", - "name": "catch_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 189, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_finally_do", - "name": "finally_do", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 194, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 238, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 243, - "column_start": 4, - "column_end": 84, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 246, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 249, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_on_error", - "name": "on_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 263, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_safe_call", - "name": "safe_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 282, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_try_call", - "name": "try_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 301, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_try_operation", - "name": "try_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 0, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_throw_error", - "name": "throw_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 312, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 322, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_divide", - "name": "divide", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 329, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_risky_operation", - "name": "risky_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 337, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_timeout_operation", - "name": "timeout_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 346, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_safe_division", - "name": "safe_division", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 373, - "column_start": 32, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 378, - "column_start": 30, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 383, - "column_start": 32, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 385, - "column_start": 8, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "error", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 411, - "column_start": 40, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "error", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_double_if_positive", - "name": "double_if_positive", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 425, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 430, - "column_start": 13, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "x", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_lambda", - "name": "lambda", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 437, - "column_start": 13, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "x", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 57, - "column_start": 0, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy", - "get_stack_trace" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ResultBox", - "name": "ResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 168, - "column_start": 0, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "is_ok", - "is_err", - "unwrap", - "unwrap_or", - "unwrap_err", - "map", - "map_err", - "and_then", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_TryBox", - "name": "TryBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 249, - "column_start": 0, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "catch", - "catch_all", - "finally_do", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ErrorHandlingArrowBox", - "name": "ErrorHandlingArrowBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 301, - "column_start": 0, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "on_error" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_RiskyBox", - "name": "RiskyBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 346, - "column_start": 0, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Any, Callable, Dict, List, Optional, Union, Type", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_async_complete AsyncArrowBox, AsyncFutureBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_p2p_capsule public", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "random", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 334 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 342 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_executor.py", - "path": "./development/archive/legacy_src/nyash_v4_executor.py", - "language": "python", - "size_bytes": 7689, - "total_lines": 237, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.979239428Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 40, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_findMain", - "name": "findMain", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 48, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_listAllFunctions", - "name": "listAllFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 56, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 88, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 95, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 98, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 103, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_loadProgram", - "name": "loadProgram", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_loadFromFile", - "name": "loadFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_info", - "name": "info", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 136, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_createHelloWorldProgram", - "name": "createHelloWorldProgram", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 152, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_createCalculatorProgram", - "name": "createCalculatorProgram", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 171, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_createMultiBoxProgram", - "name": "createMultiBoxProgram", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 188, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_FunctionDefinition", - "name": "FunctionDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoxDefinition", - "name": "BoxDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 0, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ProgramBox", - "name": "ProgramBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 98, - "column_start": 0, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "findMain", - "listAllFunctions", - "run", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashExecutor", - "name": "NyashExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 136, - "column_start": 0, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "loadProgram", - "loadFromFile", - "execute", - "info" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_functions FunctionBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_fileio.py", - "path": "./development/archive/legacy_src/nyash_v4_fileio.py", - "language": "python", - "size_bytes": 8724, - "total_lines": 258, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.983650019Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_readText", - "name": "readText", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 37, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_writeText", - "name": "writeText", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 65, - "column_start": 4, - "column_end": 85, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_fileExists", - "name": "fileExists", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getSize", - "name": "getSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 88, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 96, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 115, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 118, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 126, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 133, - "column_start": 4, - "column_end": 94, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 136, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 139, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 153, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 156, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 159, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_createNyashSourceFile", - "name": "createNyashSourceFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 166, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 96, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "read", - "write", - "fileExists", - "getSize", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FileReadBox", - "name": "FileReadBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 118, - "column_start": 0, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FileWriteBox", - "name": "FileWriteBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 139, - "column_start": 0, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FileExistsBox", - "name": "FileExistsBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 159, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core Box, StringBox, BoolBox, IntegerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_functions.py", - "path": "./development/archive/legacy_src/nyash_v4_functions.py", - "language": "python", - "size_bytes": 6638, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.988107491Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 25, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 28, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 85, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 92, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 95, - "column_start": 4, - "column_end": 102, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 118, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 126, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 145, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 149, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 152, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 155, - "column_start": 4, - "column_end": 81, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 28, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionBox", - "name": "FunctionBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 104, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "init", - "call", - "fini", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ReturnBox", - "name": "ReturnBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 126, - "column_start": 0, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionCallBox", - "name": "FunctionCallBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 155, - "column_start": 0, - "column_end": 81, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "typing List, Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_variables AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 160 - }, - { - "module": "nyash_v4_core BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 161 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_globals.py", - "path": "./development/archive/legacy_src/nyash_v4_globals.py", - "language": "python", - "size_bytes": 8048, - "total_lines": 236, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.992607208Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___new__", - "name": "__new__", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 30, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cls", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 39, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_declare", - "name": "declare", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_list", - "name": "list", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_register_singleton", - "name": "register_singleton", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 74, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_singleton", - "name": "get_singleton", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 86, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 98, - "column_start": 4, - "column_end": 103, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getValue", - "name": "getValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_setValue", - "name": "setValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 130, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 138, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getInstance", - "name": "getInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 158, - "column_start": 4, - "column_end": 85, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 163, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 8, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 213, - "column_start": 8, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 216, - "column_start": 8, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 219, - "column_start": 8, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_GlobalBox", - "name": "GlobalBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 106, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__new__", - "__init__", - "declare", - "get", - "set", - "has", - "list", - "register_singleton", - "get_singleton", - "clear", - "get_stats", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_GlobalRefBox", - "name": "GlobalRefBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 138, - "column_start": 0, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "getValue", - "setValue", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SingletonBox", - "name": "SingletonBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 167, - "column_start": 0, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "getInstance", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ConfigBox", - "name": "ConfigBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "set", - "get", - "toString" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "typing Dict, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "threading Lock", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_variables AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 172 - }, - { - "module": "nyash_v4_core BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 173 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_higher_order.py", - "path": "./development/archive/legacy_src/nyash_v4_higher_order.py", - "language": "python", - "size_bytes": 16357, - "total_lines": 451, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:35.997684128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__capture_variables", - "name": "_capture_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 50, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 87, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 78, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 86, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 121, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 128, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 131, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 173, - "column_start": 4, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 179, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 220, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 223, - "column_start": 4, - "column_end": 101, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 226, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 229, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 238, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 274, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 4, - "column_end": 110, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 281, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 288, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 298, - "column_start": 4, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 316, - "column_start": 4, - "column_end": 81, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 319, - "column_start": 4, - "column_end": 90, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 322, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 325, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 335, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 358, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 362, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 365, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 368, - "column_start": 4, - "column_end": 88, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ClosureBox", - "name": "ClosureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 64, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_capture_variables", - "call", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionVariableBox", - "name": "FunctionVariableBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 86, - "column_start": 0, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "call", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_LambdaBox", - "name": "LambdaBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 131, - "column_start": 0, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "call", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_MapBox", - "name": "MapBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 179, - "column_start": 0, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FilterBox", - "name": "FilterBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 181, - "line_end": 229, - "column_start": 0, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ReduceBox", - "name": "ReduceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 288, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ComposeBox", - "name": "ComposeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 325, - "column_start": 0, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "call", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_CurryBox", - "name": "CurryBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 329, - "line_end": 368, - "column_start": 0, - "column_end": 88, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "call", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Any, Callable", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, FunctionCallBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 145 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 191 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 375 - }, - { - "module": "nyash_v4_variables AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 376 - }, - { - "module": "nyash_v4_variables MulBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 394 - }, - { - "module": "nyash_v4_comparisons GreaterThanBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 423 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_instantiation.py", - "path": "./development/archive/legacy_src/nyash_v4_instantiation.py", - "language": "python", - "size_bytes": 14632, - "total_lines": 418, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.003452162Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__init_defaults", - "name": "_init_defaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 35, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_register_type", - "name": "register_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_register_constructor", - "name": "register_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_type", - "name": "get_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_constructor", - "name": "get_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_list_types", - "name": "list_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_global_registry", - "name": "get_global_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 61, - "column_start": 0, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 107, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__extract_value", - "name": "_extract_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 116, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 123, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 126, - "column_start": 4, - "column_end": 79, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 138, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_increment_instance_count", - "name": "increment_instance_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_memory_usage", - "name": "add_memory_usage", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 115, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 161, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 171, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 192, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 195, - "column_start": 4, - "column_end": 99, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 198, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 201, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 213, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_instance", - "name": "create_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 225, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_method", - "name": "get_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 238, - "column_start": 4, - "column_end": 90, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 243, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 250, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 262, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set_constructor_result", - "name": "set_constructor_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 274, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call_method", - "name": "call_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 286, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getType", - "name": "getType", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 289, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 299, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 306, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_BoxTypeRegistry", - "name": "BoxTypeRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 55, - "column_start": 0, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_init_defaults", - "register_type", - "register_constructor", - "get_type", - "get_constructor", - "list_types" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NewBox", - "name": "NewBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 126, - "column_start": 0, - "column_end": 79, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_extract_value", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_TypeInfoBox", - "name": "TypeInfoBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 161, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "increment_instance_count", - "add_memory_usage", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_InstanceOfBox", - "name": "InstanceOfBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 201, - "column_start": 0, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ClassDefinitionBox", - "name": "ClassDefinitionBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 250, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "create_instance", - "add_method", - "get_method", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_CustomBox", - "name": "CustomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 254, - "line_end": 306, - "column_start": 0, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "set_constructor_result", - "set_field", - "get_field", - "call_method", - "getType", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Dict, Optional, Type, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AssignBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_core IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 28 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 29 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 313 - }, - { - "module": "nyash_v4_variables PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 361 - }, - { - "module": "nyash_v4_variables AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 374 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_lifecycle_manager.py", - "path": "./development/archive/legacy_src/nyash_v4_lifecycle_manager.py", - "language": "python", - "size_bytes": 12601, - "total_lines": 374, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.008779002Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 32, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 41, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_child", - "name": "add_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 57, - "column_start": 4, - "column_end": 88, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_remove_child", - "name": "remove_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set_owned", - "name": "set_owned", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 93, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_hierarchy_info", - "name": "get_hierarchy_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 109, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_build_tree", - "name": "build_tree", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 107, - "column_start": 8, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "box", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_enter_scope", - "name": "enter_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 124, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_exit_scope", - "name": "exit_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 140, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_register_box", - "name": "register_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 147, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_current_level", - "name": "get_current_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 150, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_scope_manager", - "name": "get_scope_manager", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 156, - "column_start": 0, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 167, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 218, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 230, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 235, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 238, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getType", - "name": "getType", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 241, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___getattr__", - "name": "__getattr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "name", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 257, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 281, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 284, - "column_start": 4, - "column_end": 102, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 287, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 290, - "column_start": 4, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ManagedBox", - "name": "ManagedBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 109, - "column_start": 0, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy", - "add_child", - "remove_child", - "set_owned", - "fini", - "get_hierarchy_info" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ScopeManager", - "name": "ScopeManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 150, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "enter_scope", - "exit_scope", - "register_box", - "get_current_level" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ManagedNewBox", - "name": "ManagedNewBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 218, - "column_start": 0, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ManagedBoxWrapper", - "name": "ManagedBoxWrapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 245, - "column_start": 0, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy", - "getType", - "__getattr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_WithBox", - "name": "WithBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 290, - "column_start": 0, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Set", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "weakref", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_instantiation get_global_registry", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 171 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 297 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_loops.py", - "path": "./development/archive/legacy_src/nyash_v4_loops.py", - "language": "python", - "size_bytes": 7949, - "total_lines": 247, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.013525690Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 26, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 29, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 32, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 35, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 40, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 43, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 46, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 49, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 100, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_condition", - "name": "_evaluate_condition", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 115, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 121, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 124, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 127, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 136, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 168, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_value", - "name": "_evaluate_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 176, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 179, - "column_start": 4, - "column_end": 124, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 182, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 185, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_BreakException", - "name": "BreakException", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ContinueException", - "name": "ContinueException", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BreakBox", - "name": "BreakBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 35, - "column_start": 0, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ContinueBox", - "name": "ContinueBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 49, - "column_start": 0, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_LoopBox", - "name": "LoopBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 127, - "column_start": 0, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "_evaluate_condition", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_RangeLoopBox", - "name": "RangeLoopBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 185, - "column_start": 0, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "_evaluate_value", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables AssignBox, PrintBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 189 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_method_call.py", - "path": "./development/archive/legacy_src/nyash_v4_method_call.py", - "language": "python", - "size_bytes": 16760, - "total_lines": 435, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.018606581Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 41, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__resolve_object", - "name": "_resolve_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__evaluate_arguments", - "name": "_evaluate_arguments", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__invoke_method", - "name": "_invoke_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 92, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_generic_method", - "name": "_handle_generic_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 112, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_string_methods", - "name": "_handle_string_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 133, - "column_start": 4, - "column_end": 101, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_array_methods", - "name": "_handle_array_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 159, - "column_start": 4, - "column_end": 100, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "obj", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_integer_methods", - "name": "_handle_integer_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 176, - "column_start": 4, - "column_end": 102, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_common_methods", - "name": "_handle_common_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 4, - "column_end": 107, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__wrap_result", - "name": "_wrap_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 206, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 94, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 213, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 220, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 231, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 251, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 258, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 261, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 267, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 310, - "column_start": 4, - "column_end": 85, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 313, - "column_start": 4, - "column_end": 84, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 316, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 319, - "column_start": 4, - "column_end": 76, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_MethodCallBox", - "name": "MethodCallBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 220, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "_resolve_object", - "_evaluate_arguments", - "_invoke_method", - "_handle_generic_method", - "_handle_string_methods", - "_handle_array_methods", - "_handle_integer_methods", - "_handle_common_methods", - "_wrap_result", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ChainMethodCallBox", - "name": "ChainMethodCallBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 267, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PropertyAccessBox", - "name": "PropertyAccessBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 319, - "column_start": 0, - "column_end": 76, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AssignBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 326 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 327 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_p2p_capsule.py", - "path": "./development/archive/legacy_src/nyash_v4_p2p_capsule.py", - "language": "python", - "size_bytes": 9896, - "total_lines": 278, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.024056492Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_public", - "name": "public", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "method", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__discover_public_methods", - "name": "_discover_public_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_link", - "name": "link", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_unlink", - "name": "unlink", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isLinkedTo", - "name": "isLinkedTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLinkCount", - "name": "getLinkCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_call", - "name": "call", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 79, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_broadcast", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 91, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__on_linked", - "name": "_on_linked", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "other_box", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__on_unlinked", - "name": "_on_unlinked", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "other_box", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__internal_state", - "name": "_internal_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 109, - "column_start": 4, - "column_end": 102, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 115, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getName", - "name": "getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_receiveMessage", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 148, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getMessageCount", - "name": "getMessageCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__encrypt", - "name": "_encrypt", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__decrypt", - "name": "_decrypt", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__get_encryption_key", - "name": "_get_encryption_key", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 176, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_ping", - "name": "ping", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_store", - "name": "store", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_retrieve", - "name": "retrieve", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__internal_cleanup", - "name": "_internal_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_CapsuleLinkableBox", - "name": "CapsuleLinkableBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 115, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_discover_public_methods", - "call", - "broadcast", - "_on_linked", - "_on_unlinked", - "_internal_state", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SecureMessageBox", - "name": "SecureMessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 166, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_encrypt", - "_decrypt", - "_get_encryption_key" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SimpleNodeBox", - "name": "SimpleNodeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 196, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_internal_cleanup" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Set, Dict, Callable", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_p2p_link.py", - "path": "./development/archive/legacy_src/nyash_v4_p2p_link.py", - "language": "python", - "size_bytes": 9416, - "total_lines": 254, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.028684177Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_link", - "name": "link", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 39, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_unlink", - "name": "unlink", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 51, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_isLinkedTo", - "name": "isLinkedTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLinkedBoxes", - "name": "getLinkedBoxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLinkCount", - "name": "getLinkCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_callLinked", - "name": "callLinked", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 89, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 93, - "column_start": 4, - "column_end": 80, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 96, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_public_sendMessage", - "name": "public_sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_public_getName", - "name": "public_getName", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_broadcast", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 142, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_public_postMessage", - "name": "public_postMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 155, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getHistory", - "name": "getHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 158, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 161, - "column_start": 4, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 169, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_sendToRoom", - "name": "sendToRoom", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 177, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_public_receiveMessage", - "name": "public_receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 184, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 187, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_LinkableBox", - "name": "LinkableBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 100, - "column_start": 0, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "link", - "unlink", - "isLinkedTo", - "getLinkedBoxes", - "getLinkCount", - "callLinked", - "_perform_fini", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_P2PNodeBox", - "name": "P2PNodeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 132, - "column_start": 0, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "public_sendMessage", - "public_getName", - "broadcast", - "toString" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ChatRoomBox", - "name": "ChatRoomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 161, - "column_start": 0, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "public_postMessage", - "getHistory", - "toString" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ChatUserBox", - "name": "ChatUserBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 187, - "column_start": 0, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "sendToRoom", - "public_receiveMessage", - "toString" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Set", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_parser.py", - "path": "./development/archive/legacy_src/nyash_v4_parser.py", - "language": "python", - "size_bytes": 15705, - "total_lines": 478, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.033908533Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___repr__", - "name": "__repr__", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 28, - "column_start": 4, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 82, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 120, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 140, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 150, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 154, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 158, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 162, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 166, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 172, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_current_token", - "name": "current_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 183, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 193, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 205, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_box_definition", - "name": "parse_box_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 218, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_function_definition", - "name": "parse_function_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 4, - "column_end": 46, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_block", - "name": "parse_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 238, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 251, - "column_start": 4, - "column_end": 63, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_let_statement", - "name": "parse_let_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_print_statement", - "name": "parse_print_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 269, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_assignment", - "name": "parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 277, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_expression", - "name": "parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 288, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 315, - "column_start": 4, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 320, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 330, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_box_definition", - "name": "convert_box_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 340, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_function_definition", - "name": "convert_function_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 366, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_block", - "name": "convert_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 376, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_statement", - "name": "convert_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 387, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert_expression", - "name": "convert_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 408, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parseText", - "name": "parseText", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 436, - "column_start": 4, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 28, - "column_start": 0, - "column_end": 77, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "__repr__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Tokenizer", - "name": "Tokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 120, - "column_start": 0, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "tokenize" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 124, - "column_start": 0, - "column_end": 8, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoxDefNode", - "name": "BoxDefNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_FunctionDefNode", - "name": "FunctionDefNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 136, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BlockNode", - "name": "BlockNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AssignNode", - "name": "AssignNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintNode", - "name": "PrintNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NumberNode", - "name": "NumberNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 154, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_StringNode", - "name": "StringNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoolNode", - "name": "BoolNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VarNode", - "name": "VarNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 0, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BinOpNode", - "name": "BinOpNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Parser", - "name": "Parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 315, - "column_start": 0, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "current_token", - "consume", - "parse", - "parse_box_definition", - "parse_function_definition", - "parse_block", - "parse_statement", - "parse_let_statement", - "parse_print_statement", - "parse_assignment", - "parse_expression", - "parse_primary" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_BoxConverter", - "name": "BoxConverter", - "symbol_type": "Class", - "file_path": "", - "line_start": 318, - "line_end": 408, - "column_start": 0, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "convert", - "convert_box_definition", - "convert_function_definition", - "convert_block", - "convert_statement", - "convert_expression" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 411, - "line_end": 436, - "column_start": 0, - "column_end": 17, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "parseText" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "typing List, Optional, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox, VarRefBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_comparisons LessThanBox, GreaterThanBox, EqualsBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_executor BoxDefinition, FunctionDefinition, ProgramBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyash_v4_functions FunctionBox, FunctionCallBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "nyash_v4_executor NyashExecutor", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 467 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 477 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_self_boxconverter.py", - "path": "./development/archive/legacy_src/nyash_v4_self_boxconverter.py", - "language": "python", - "size_bytes": 19216, - "total_lines": 506, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.039696563Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 31, - "column_start": 4, - "column_end": 81, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 34, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 37, - "column_start": 4, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 74, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_box_definition", - "name": "_convert_box_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 89, - "column_start": 4, - "column_end": 48, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_function_definition", - "name": "_convert_function_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 106, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_block", - "name": "_convert_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_statement", - "name": "_convert_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 131, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_assign_statement", - "name": "_convert_assign_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 139, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_print_statement", - "name": "_convert_print_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 145, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_expression", - "name": "_convert_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 163, - "column_start": 4, - "column_end": 71, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_number_expression", - "name": "_convert_number_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 171, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_string_expression", - "name": "_convert_string_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_bool_expression", - "name": "_convert_bool_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 187, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_var_expression", - "name": "_convert_var_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__convert_binop_expression", - "name": "_convert_binop_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 206, - "column_start": 4, - "column_end": 64, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getStatistics", - "name": "getStatistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 215, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 197, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 222, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 225, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 238, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 246, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 249, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 257, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 268, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile", - "name": "compile", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 287, - "column_start": 4, - "column_end": 22, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_and_run", - "name": "compile_and_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 297, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getCompilationCount", - "name": "getCompilationCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 300, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 303, - "column_start": 4, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 306, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 309, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_nyash_boxconverter_function", - "name": "create_nyash_boxconverter_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 324, - "column_start": 0, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 332, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_debug_compilation_pipeline", - "name": "debug_compilation_pipeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 375, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 378, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 381, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 384, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_BoxDefinitionBox", - "name": "BoxDefinitionBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 37, - "column_start": 0, - "column_end": 78, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashBoxConverterBox", - "name": "NyashBoxConverterBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 225, - "column_start": 0, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "convert", - "_convert_box_definition", - "_convert_function_definition", - "_convert_block", - "_convert_statement", - "_convert_assign_statement", - "_convert_print_statement", - "_convert_expression", - "_convert_number_expression", - "_convert_string_expression", - "_convert_bool_expression", - "_convert_var_expression", - "_convert_binop_expression", - "getStatistics", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ConversionStatisticsBox", - "name": "ConversionStatisticsBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 257, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashSelfHostingCompilerBox", - "name": "NyashSelfHostingCompilerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 309, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "compile", - "compile_and_run", - "getCompilationCount", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_CompilerDebuggerBox", - "name": "CompilerDebuggerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 328, - "line_end": 384, - "column_start": 0, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "debug_compilation_pipeline", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, VarRefBox, PrintBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_method_call MethodCallBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyash_v4_self_parser ASTNodeBox, NyashSelfHostingParserBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "nyash_v4_executor ProgramBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 18 - }, - { - "module": "nyash_v4_executor BoxDefinition", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 65 - }, - { - "module": "nyash_v4_self_tokenizer NyashTokenizerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 341 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 372 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 451 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_self_parser.py", - "path": "./development/archive/legacy_src/nyash_v4_self_parser.py", - "language": "python", - "size_bytes": 17476, - "total_lines": 499, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.045557106Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__wrap_value", - "name": "_wrap_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 49, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getAttribute", - "name": "getAttribute", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_setAttribute", - "name": "setAttribute", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getNodeType", - "name": "getNodeType", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 60, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 71, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 74, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 92, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__advance", - "name": "_advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__peek", - "name": "_peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__expect", - "name": "_expect", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 117, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__match", - "name": "_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 122, - "column_start": 4, - "column_end": 81, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 136, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_box_definition", - "name": "_parse_box_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 151, - "column_start": 4, - "column_end": 101, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_function_definition", - "name": "_parse_function_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 170, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_block", - "name": "_parse_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 183, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_statement", - "name": "_parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 196, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_let_statement", - "name": "_parse_let_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 208, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_print_statement", - "name": "_parse_print_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 218, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_assignment", - "name": "_parse_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 229, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_expression", - "name": "_parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 243, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__parse_primary", - "name": "_parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 276, - "column_start": 4, - "column_end": 79, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 279, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 282, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 285, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 293, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_visualize", - "name": "visualize", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 306, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__visualize_node", - "name": "_visualize_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 329, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 332, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 335, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 338, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_nyash_parser_function", - "name": "create_nyash_parser_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 363, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_source_code", - "name": "parse_source_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_parse_and_visualize", - "name": "parse_and_visualize", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 379, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 382, - "column_start": 4, - "column_end": 83, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 385, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 388, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_ASTNodeBox", - "name": "ASTNodeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 80, - "column_start": 0, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_wrap_value", - "getAttribute", - "setAttribute", - "getNodeType", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashParserBox", - "name": "NyashParserBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 285, - "column_start": 0, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_advance", - "_peek", - "_expect", - "_match", - "parse", - "_parse_box_definition", - "_parse_function_definition", - "_parse_block", - "_parse_statement", - "_parse_let_statement", - "_parse_print_statement", - "_parse_assignment", - "_parse_expression", - "_parse_primary", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_ASTVisualizerBox", - "name": "ASTVisualizerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 289, - "line_end": 338, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "visualize", - "_visualize_node", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashSelfHostingParserBox", - "name": "NyashSelfHostingParserBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 388, - "column_start": 0, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "parse_source_code", - "parse_and_visualize", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, VarRefBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_method_call MethodCallBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "nyash_v4_self_tokenizer TokenBox, NyashTokenizerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 460 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_self_tokenizer.py", - "path": "./development/archive/legacy_src/nyash_v4_self_tokenizer.py", - "language": "python", - "size_bytes": 18306, - "total_lines": 491, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.051592308Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__wrap_value", - "name": "_wrap_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getTokenType", - "name": "getTokenType", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 44, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getValue", - "name": "getValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 47, - "column_start": 4, - "column_end": 25, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getLine", - "name": "getLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 50, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_getColumn", - "name": "getColumn", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 53, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 56, - "column_start": 4, - "column_end": 129, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 72, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 85, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__compile_pattern", - "name": "_compile_pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 58, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 96, - "column_start": 4, - "column_end": 85, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 99, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 102, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 188, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 191, - "column_start": 4, - "column_end": 66, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 194, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 197, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 206, - "column_start": 4, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 209, - "column_start": 4, - "column_end": 110, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 212, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 215, - "column_start": 4, - "column_end": 98, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_nyash_tokenizer_function", - "name": "create_nyash_tokenizer_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 237, - "column_start": 0, - "column_end": 73, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 245, - "column_start": 4, - "column_end": 45, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__init_patterns", - "name": "_init_patterns", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 305, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__init_keywords", - "name": "_init_keywords", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 321, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 378, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 381, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 384, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 387, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_TokenBox", - "name": "TokenBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 72, - "column_start": 0, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_wrap_value", - "getTokenType", - "getValue", - "getLine", - "getColumn", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PatternMatcherBox", - "name": "PatternMatcherBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 102, - "column_start": 0, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_compile_pattern", - "match", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_CompiledPatternBox", - "name": "CompiledPatternBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 197, - "column_start": 0, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "match", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_MatchResultBox", - "name": "MatchResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 215, - "column_start": 0, - "column_end": 98, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NyashTokenizerBox", - "name": "NyashTokenizerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 387, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_init_patterns", - "_init_keywords", - "tokenize", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, VarRefBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "nyash_v4_method_call MethodCallBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 473 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_simple_auto_fini.py", - "path": "./development/archive/legacy_src/nyash_v4_simple_auto_fini.py", - "language": "python", - "size_bytes": 9937, - "total_lines": 248, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.056974099Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_track_init_resource", - "name": "track_init_resource", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 4, - "column_end": 100, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 47, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_disable_auto_fini", - "name": "disable_auto_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 4, - "column_end": 112, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 62, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_init", - "name": "_perform_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 93, - "column_start": 4, - "column_end": 114, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__should_track_resource", - "name": "_should_track_resource", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 105, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 123, - "column_start": 4, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 8, - "column_end": 28, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 8, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_SimpleAutoFiniBox", - "name": "SimpleAutoFiniBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 62, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "track_init_resource", - "_perform_fini", - "disable_auto_fini", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_SimpleAutoFiniFunctionBox", - "name": "SimpleAutoFiniFunctionBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 123, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_perform_init", - "_should_track_resource", - "_perform_fini" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_OrderTrackingBox", - "name": "OrderTrackingBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 216, - "column_start": 4, - "column_end": 38, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_perform_fini" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing List, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_functions FunctionBox, VoidBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 130 - }, - { - "module": "nyash_v4_collections ArrayBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 131 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 199 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v4_variables.py", - "path": "./development/archive/legacy_src/nyash_v4_variables.py", - "language": "python", - "size_bytes": 12399, - "total_lines": 351, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.061865392Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 4, - "column_end": 30, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 4, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 73, - "column_start": 4, - "column_end": 40, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 4, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 94, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 4, - "column_end": 62, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 110, - "column_start": 4, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 148, - "column_start": 4, - "column_end": 27, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 151, - "column_start": 4, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 154, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 157, - "column_start": 4, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 170, - "column_start": 4, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 175, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 178, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 184, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 201, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 204, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 207, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 210, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 218, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 246, - "column_start": 4, - "column_end": 92, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 249, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 252, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 255, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 262, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_evaluate", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 288, - "column_start": 4, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 291, - "column_start": 4, - "column_end": 91, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 294, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 297, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_VariableBox", - "name": "VariableBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 47, - "column_start": 0, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "set", - "get", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_Environment", - "name": "Environment", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 110, - "column_start": 0, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "define", - "get", - "set", - "has" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AssignBox", - "name": "AssignBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 157, - "column_start": 0, - "column_end": 47, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_VarRefBox", - "name": "VarRefBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 178, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_PrintBox", - "name": "PrintBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 180, - "line_end": 210, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "execute", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_AddBox", - "name": "AddBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 213, - "line_end": 255, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_MulBox", - "name": "MulBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 297, - "column_start": 0, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "evaluate", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "typing Optional, Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_v5_box_compiler.py", - "path": "./development/archive/legacy_src/nyash_v5_box_compiler.py", - "language": "python", - "size_bytes": 12026, - "total_lines": 351, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.067299731Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_new_temp", - "name": "new_temp", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_string_constant", - "name": "add_string_constant", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 4, - "column_end": 43, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_program", - "name": "compile_program", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 73, - "column_start": 4, - "column_end": 37, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_header", - "name": "emit_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_box_structure", - "name": "emit_box_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 98, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_emit_runtime_functions", - "name": "emit_runtime_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 116, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate_string_constants", - "name": "generate_string_constants", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 127, - "column_start": 4, - "column_end": 24, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_statement", - "name": "compile_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 4, - "column_end": 70, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_assignment", - "name": "compile_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 168, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_expression_statement", - "name": "compile_expression_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 174, - "column_start": 4, - "column_end": 42, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_method_call", - "name": "compile_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 201, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_print", - "name": "compile_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 226, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_generate_runtime_c", - "name": "generate_runtime_c", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 285, - "column_start": 0, - "column_end": 3, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_compile_nyash_v5", - "name": "compile_nyash_v5", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 344, - "column_start": 0, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NyashV5BoxCompiler", - "name": "NyashV5BoxCompiler", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 226, - "column_start": 0, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "emit", - "new_temp", - "add_string_constant", - "compile_program", - "emit_header", - "emit_box_structure", - "emit_runtime_functions", - "generate_string_constants", - "compile_statement", - "compile_assignment", - "compile_expression_statement", - "compile_method_call", - "compile_print" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "typing Dict, List, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_core Box, StringBox, IntegerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyashc_v4 NyashTokenizer, NyashParser", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "traceback", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 343 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_array_test.py", - "path": "./development/archive/legacy_src/simple_array_test.py", - "language": "python", - "size_bytes": 1219, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.071460211Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_test_direct_array_operations", - "name": "test_direct_array_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 38, - "column_start": 0, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v4_collections ArrayBox, ArrayAddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_core StringBox, IntegerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_addbox.py", - "path": "./development/archive/legacy_src/test_addbox.py", - "language": "python", - "size_bytes": 1878, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.075072997Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_test_addbox_directly", - "name": "test_addbox_directly", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 41, - "column_start": 0, - "column_end": 72, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_function_with_addbox", - "name": "test_function_with_addbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 61, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v4_core IntegerBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_functions FunctionBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_arraybox_program.py", - "path": "./development/archive/legacy_src/test_arraybox_program.py", - "language": "python", - "size_bytes": 2801, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.078717314Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_createArrayTestProgram", - "name": "createArrayTestProgram", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 63, - "column_start": 0, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v4_core StringBox, IntegerBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_collections ArrayBox, ArrayAddBox, ArrayGetBox, ArraySizeBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_variables Environment, AssignBox, PrintBox, VarRefBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_executor BoxDefinition, FunctionDefinition, ProgramBox, NyashExecutor", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_lifecycle.py", - "path": "./development/archive/legacy_src/test_lifecycle.py", - "language": "python", - "size_bytes": 6019, - "total_lines": 197, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.082935378Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_init", - "name": "_perform_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__perform_fini", - "name": "_perform_fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 4, - "column_end": 32, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "env", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_toString", - "name": "toString", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 38, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 46, - "column_start": 4, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_basic_lifecycle", - "name": "test_basic_lifecycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 84, - "column_start": 0, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_with_statement", - "name": "test_with_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 109, - "column_start": 0, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_multiple_boxes", - "name": "test_multiple_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 138, - "column_start": 0, - "column_end": 34, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_basic_types_lifecycle", - "name": "test_basic_types_lifecycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 162, - "column_start": 0, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_lifecycle_events_detail", - "name": "test_lifecycle_events_detail", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 189, - "column_start": 0, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_TestBox", - "name": "TestBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 46, - "column_start": 0, - "column_end": 33, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_perform_init", - "_perform_fini", - "toString", - "equals", - "copy" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "time", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, FloatBox, LifecycleInfoBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_variables Environment", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_loop_with_comparison.py", - "path": "./development/archive/legacy_src/test_loop_with_comparison.py", - "language": "python", - "size_bytes": 1864, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.086931174Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v4_core Box, IntegerBox, StringBox, BoolBox, BlockBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "nyash_v4_variables Environment, VarRefBox, AssignBox, PrintBox, AddBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_comparisons LessThanBox, GreaterThanBox, EqualsBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_loops LoopBox, RangeLoopBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_parser_with_fileio.py", - "path": "./development/archive/legacy_src/test_parser_with_fileio.py", - "language": "python", - "size_bytes": 4634, - "total_lines": 161, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.090543023Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_test_file_to_execution_pipeline", - "name": "test_file_to_execution_pipeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 66, - "column_start": 0, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_multiple_nyash_files", - "name": "test_multiple_nyash_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 119, - "column_start": 0, - "column_end": 16, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 155, - "column_start": 0, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "nyash_v4_core StringBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - }, - { - "module": "nyash_v4_fileio FileBox, createNyashSourceFile", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "nyash_v4_parser NyashParser", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "nyash_v4_executor NyashExecutor", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_pegtl_grammar.cpp", - "path": "./development/archive/legacy_src/test_pegtl_grammar.cpp", - "language": "cpp", - "size_bytes": 5211, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.094478476Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_pegtl_interpreter.cpp", - "path": "./development/archive/legacy_src/test_pegtl_interpreter.cpp", - "language": "cpp", - "size_bytes": 10981, - "total_lines": 298, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.096821470Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_pegtl_parser.cpp", - "path": "./development/archive/legacy_src/test_pegtl_parser.cpp", - "language": "cpp", - "size_bytes": 7539, - "total_lines": 215, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.099122639Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 215, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_pegtl_tokenizer.cpp", - "path": "./development/archive/legacy_src/test_pegtl_tokenizer.cpp", - "language": "cpp", - "size_bytes": 5246, - "total_lines": 131, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.101198075Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_string_advanced.py", - "path": "./development/archive/legacy_src/test_string_advanced.py", - "language": "python", - "size_bytes": 5504, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.103400816Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_test_string_advanced_operations", - "name": "test_string_advanced_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 69, - "column_start": 0, - "column_end": 41, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_string_character_types", - "name": "test_string_character_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 104, - "column_start": 0, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_test_tokenizer_simulation", - "name": "test_tokenizer_simulation", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 151, - "column_start": 0, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "nyash_v4_core StringBox, IntegerBox, BoolBox", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ast.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/ast.rs", - "language": "rust", - "size_bytes": 30656, - "total_lines": 935, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.209748350Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unknown", - "name": "unknown", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error_context", - "name": "error_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_location_string", - "name": "location_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_nyash_box", - "name": "to_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_nyash_box", - "name": "from_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_node_type", - "name": "node_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 594, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_classify", - "name": "classify", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 635, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_structure", - "name": "is_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 640, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_expression", - "name": "is_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 645, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_statement", - "name": "is_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 650, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_info", - "name": "info", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 760, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_span", - "name": "span", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 795, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 801, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_param_count", - "name": "get_param_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 806, - "line_end": 811, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_node_creation", - "name": "test_ast_node_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 822, - "line_end": 852, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operator", - "name": "test_binary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 864, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_ast", - "name": "test_complex_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 867, - "line_end": 903, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_call", - "name": "test_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 906, - "line_end": 919, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operation", - "name": "test_binary_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 922, - "line_end": 934, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Span", - "name": "Span", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNodeType", - "name": "ASTNodeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StructureNode", - "name": "StructureNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExpressionNode", - "name": "ExpressionNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StatementNode", - "name": "StatementNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CatchClause", - "name": "CatchClause", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 238, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LiteralValue", - "name": "LiteralValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_UnaryOperator", - "name": "UnaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOperator", - "name": "BinaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 308, - "line_end": 320, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 352, - "line_end": 558, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bool_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/bool_box.rs", - "language": "rust", - "size_bytes": 1561, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.215367368Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/debug_box.rs", - "language": "rust", - "size_bytes": 8396, - "total_lines": 246, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.219016405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_tracking", - "name": "start_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_tracking", - "name": "stop_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_fields", - "name": "get_box_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all", - "name": "dump_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_file", - "name": "save_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_watch", - "name": "watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_memory_report", - "name": "memory_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_breakpoint", - "name": "set_breakpoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trace_call", - "name": "trace_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_call_stack", - "name": "show_call_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_tracking", - "name": "is_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_tracked_count", - "name": "get_tracked_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugBox", - "name": "DebugBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TrackedBoxInfo", - "name": "TrackedBoxInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_CallInfo", - "name": "CallInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integer_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/integer_box.rs", - "language": "rust", - "size_bytes": 1467, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.222678189Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "map_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/map_box.rs", - "language": "rust", - "size_bytes": 5606, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.226153799Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_keys", - "name": "keys", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_values", - "name": "values", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_forEach", - "name": "forEach", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toJSON", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MapBox", - "name": "MapBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/math_box.rs", - "language": "rust", - "size_bytes": 8004, - "total_lines": 283, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.230076789Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_abs", - "name": "abs", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_max", - "name": "max", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_min", - "name": "min", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pow", - "name": "pow", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sqrt", - "name": "sqrt", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_iter", - "name": "iter", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MathBox", - "name": "MathBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FloatBox", - "name": "FloatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 152, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RangeBox", - "name": "RangeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 211, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/mod.rs", - "language": "rust", - "size_bytes": 782, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.233595540Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "random_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/random_box.rs", - "language": "rust", - "size_bytes": 7970, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.237084825Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seed", - "name": "seed", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next_random", - "name": "next_random", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_random", - "name": "random", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randInt", - "name": "randInt", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randBool", - "name": "randBool", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_choice", - "name": "choice", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shuffle", - "name": "shuffle", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randString", - "name": "randString", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_probability", - "name": "probability", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RandomBox", - "name": "RandomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sound_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/sound_box.rs", - "language": "rust", - "size_bytes": 7482, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.240938304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beep", - "name": "beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beeps", - "name": "beeps", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tone", - "name": "tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_alert", - "name": "alert", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pattern", - "name": "pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_volumeTest", - "name": "volumeTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_interval", - "name": "interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SoundBox", - "name": "SoundBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/string_box.rs", - "language": "rust", - "size_bytes": 4356, - "total_lines": 141, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.244740804Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "time_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/boxes/time_box.rs", - "language": "rust", - "size_bytes": 10499, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.248654712Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fromTimestamp", - "name": "fromTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sleep", - "name": "sleep", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_timestamp", - "name": "from_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_year", - "name": "year", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_month", - "name": "month", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_day", - "name": "day", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hour", - "name": "hour", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_minute", - "name": "minute", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_second", - "name": "second", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_timestamp", - "name": "timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toISOString", - "name": "toISOString", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addDays", - "name": "addDays", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addHours", - "name": "addHours", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_elapsed", - "name": "elapsed", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 351, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 365, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TimeBox", - "name": "TimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBox", - "name": "DateTimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimerBox", - "name": "TimerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_trait.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/box_trait.rs", - "language": "rust", - "size_bytes": 39173, - "total_lines": 1364, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.254778946Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 357, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_elements", - "name": "new_with_elements", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pop", - "name": "pop", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 437, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 434, - "column_start": 17, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 441, - "column_start": 53, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 453, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 463, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 460, - "column_start": 17, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 527, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 537, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 546, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 551, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 559, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 567, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 581, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 585, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 589, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 591, - "line_end": 593, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 597, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 603, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 635, - "line_end": 641, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 645, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 653, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 657, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 663, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_success", - "name": "new_success", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 689, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_error", - "name": "new_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_ok", - "name": "is_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 711, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_value", - "name": "get_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_error", - "name": "get_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 727, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 745, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 747, - "line_end": 771, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 773, - "line_end": 775, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 777, - "line_end": 791, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 795, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 799, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 803, - "line_end": 805, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 823, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 827, - "line_end": 839, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_result", - "name": "set_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 842, - "line_end": 847, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 850, - "line_end": 863, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ready", - "name": "ready", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 884, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 886, - "line_end": 892, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 894, - "line_end": 896, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 900, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 902, - "line_end": 904, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 906, - "line_end": 908, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 914, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 935, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 977, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 987, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 994, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 996, - "line_end": 1004, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 1006, - "line_end": 1008, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1010, - "line_end": 1015, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 1017, - "line_end": 1019, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 1021, - "line_end": 1023, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1035, - "line_end": 1037, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 1039, - "line_end": 1076, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1086, - "line_end": 1088, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less", - "name": "less", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater", - "name": "greater", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less_equal", - "name": "less_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1210, - "line_end": 1246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater_equal", - "name": "greater_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1248, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_box_creation", - "name": "test_string_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1294, - "line_end": 1299, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_integer_box_creation", - "name": "test_integer_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1302, - "line_end": 1307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bool_box_creation", - "name": "test_bool_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1310, - "line_end": 1315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_equality", - "name": "test_box_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 1318, - "line_end": 1325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_integers", - "name": "test_add_box_integers", - "symbol_type": "Function", - "file_path": "", - "line_start": 1328, - "line_end": 1336, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_strings", - "name": "test_add_box_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 1339, - "line_end": 1347, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_ids_unique", - "name": "test_box_ids_unique", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_void_box", - "name": "test_void_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1359, - "line_end": 1363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashBox", - "name": "NyashBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 314, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ArrayBox", - "name": "ArrayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 368, - "line_end": 371, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 510, - "line_end": 513, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 608, - "line_end": 612, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ResultBox", - "name": "ResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 668, - "line_end": 673, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FutureBox", - "name": "FutureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 810, - "line_end": 814, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AddBox", - "name": "AddBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 920, - "line_end": 924, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SubtractBox", - "name": "SubtractBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1029, - "line_end": 1032, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MultiplyBox", - "name": "MultiplyBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1080, - "line_end": 1083, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompareBox", - "name": "CompareBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1131, - "line_end": 1131, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/channel_box.rs", - "language": "rust", - "size_bytes": 6470, - "total_lines": 226, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.260411660Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_link", - "name": "link", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_handler", - "name": "register_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 21, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 32, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sender", - "name": "sender", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_receiver", - "name": "receiver", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_broadcast", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ChannelBox", - "name": "ChannelBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MessageBox", - "name": "MessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/debug_box.rs", - "language": "rust", - "size_bytes": 8396, - "total_lines": 246, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.264371058Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_tracking", - "name": "start_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_tracking", - "name": "stop_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_fields", - "name": "get_box_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all", - "name": "dump_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_file", - "name": "save_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_watch", - "name": "watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_memory_report", - "name": "memory_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_breakpoint", - "name": "set_breakpoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trace_call", - "name": "trace_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_call_stack", - "name": "show_call_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_tracking", - "name": "is_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_tracked_count", - "name": "get_tracked_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugBox", - "name": "DebugBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TrackedBoxInfo", - "name": "TrackedBoxInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_CallInfo", - "name": "CallInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "environment.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/environment.rs", - "language": "rust", - "size_bytes": 12850, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.268561973Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_global", - "name": "new_global", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_child", - "name": "new_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_undefine", - "name": "undefine", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_variables", - "name": "list_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_info", - "name": "scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_chain_info", - "name": "scope_chain_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all_variables", - "name": "dump_all_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all_boxes", - "name": "finalize_all_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_parent", - "name": "new_with_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 60, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_native", - "name": "as_native", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_global_environment", - "name": "test_global_environment", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_nested_scopes", - "name": "test_nested_scopes", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_shadowing", - "name": "test_variable_shadowing", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_setting", - "name": "test_variable_setting", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_scope_info", - "name": "test_scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_python_compat", - "name": "test_python_compat", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Environment", - "name": "Environment", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EnvironmentError", - "name": "EnvironmentError", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PythonCompatEnvironment", - "name": "PythonCompatEnvironment", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exception_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/exception_box.rs", - "language": "rust", - "size_bytes": 2659, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.272479948Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_cause", - "name": "with_cause", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_stack_frame", - "name": "add_stack_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_full_message", - "name": "get_full_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_exception_type", - "name": "is_exception_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_exception", - "name": "create_exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "finalization.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/finalization.rs", - "language": "rust", - "size_bytes": 3224, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.276168270Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_as_finalized", - "name": "mark_as_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track", - "name": "track", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all", - "name": "finalize_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_finalization_tracking", - "name": "test_finalization_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxFinalizer", - "name": "BoxFinalizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instance.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/instance.rs", - "language": "rust", - "size_bytes": 6444, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.279627888Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 56, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_dynamic", - "name": "set_field_dynamic", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method", - "name": "get_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_method", - "name": "has_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instance_creation", - "name": "test_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_field_access", - "name": "test_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instance_equality", - "name": "test_instance_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_InstanceBox", - "name": "InstanceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_methods.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/box_methods.rs", - "language": "rust", - "size_bytes": 50990, - "total_lines": 1223, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.286188122Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_string_method", - "name": "execute_string_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_array_method", - "name": "execute_array_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_file_method", - "name": "execute_file_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_result_method", - "name": "execute_result_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_future_method", - "name": "execute_future_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_channel_method", - "name": "execute_channel_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_math_method", - "name": "execute_math_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_time_method", - "name": "execute_time_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_datetime_method", - "name": "execute_datetime_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 663, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_timer_method", - "name": "execute_timer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 700, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_map_method", - "name": "execute_map_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 798, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_random_method", - "name": "execute_random_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 800, - "line_end": 880, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_sound_method", - "name": "execute_sound_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 970, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_debug_method", - "name": "execute_debug_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 972, - "line_end": 1132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1090, - "column_start": 25, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_method_box_method", - "name": "execute_method_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1135, - "line_end": 1154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_method_box", - "name": "invoke_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1157, - "line_end": 1222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/core.rs", - "language": "rust", - "size_bytes": 14722, - "total_lines": 423, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.292128975Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_detailed_message", - "name": "detailed_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_node", - "name": "execute_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_variable", - "name": "set_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_local_variable", - "name": "declare_local_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_outbox_variable", - "name": "declare_outbox_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_local_vars", - "name": "save_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_local_vars", - "name": "restore_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_outbox_vars", - "name": "save_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_outbox_vars", - "name": "restore_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_global_function", - "name": "register_global_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_truthy", - "name": "is_truthy", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable", - "name": "get_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_execution", - "name": "test_simple_execution", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_arithmetic", - "name": "test_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_statement", - "name": "test_if_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 389, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_instance_creation", - "name": "test_box_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RuntimeError", - "name": "RuntimeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "expressions.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/expressions.rs", - "language": "rust", - "size_bytes": 21882, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.296669241Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_expression", - "name": "execute_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binary_op", - "name": "execute_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unary_op", - "name": "execute_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_method_call", - "name": "execute_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 477, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 40, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_field_access", - "name": "execute_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 497, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "functions.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/functions.rs", - "language": "rust", - "size_bytes": 4099, - "total_lines": 96, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.300709874Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_function_call", - "name": "execute_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_function_declaration", - "name": "register_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 69, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "io.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/io.rs", - "language": "rust", - "size_bytes": 3282, - "total_lines": 84, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.304046959Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_include", - "name": "execute_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_arrow", - "name": "execute_arrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nowait", - "name": "execute_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/mod.rs", - "language": "rust", - "size_bytes": 2103, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.307708776Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_ControlFlow", - "name": "ControlFlow", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConstructorContext", - "name": "ConstructorContext", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxDeclaration", - "name": "BoxDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDeclaration", - "name": "FunctionDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "objects.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/objects.rs", - "language": "rust", - "size_bytes": 28309, - "total_lines": 618, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.311892021Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_new", - "name": "execute_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_constructor", - "name": "execute_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 392, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box_declaration", - "name": "register_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_generic_arguments", - "name": "validate_generic_arguments", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 460, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_valid_type", - "name": "is_valid_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 473, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_parent_constructor", - "name": "execute_parent_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 503, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 491, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_inheritance", - "name": "resolve_inheritance", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 568, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_specialize_generic_class", - "name": "specialize_generic_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 606, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_substitute_types_in_fields", - "name": "substitute_types_in_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 617, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "statements.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/interpreter/statements.rs", - "language": "rust", - "size_bytes": 17442, - "total_lines": 395, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.316575626Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_statement", - "name": "execute_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_if", - "name": "execute_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_loop", - "name": "execute_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_assignment", - "name": "execute_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 255, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_try_catch", - "name": "execute_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_throw", - "name": "execute_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/lib.rs", - "language": "rust", - "size_bytes": 1547, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.320634864Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/main.rs", - "language": "rust", - "size_bytes": 35898, - "total_lines": 1012, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.325240520Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nyash_file", - "name": "execute_nyash_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 115, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_basic_boxes", - "name": "demo_basic_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 137, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_operations", - "name": "demo_box_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_collections", - "name": "demo_box_collections", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 195, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_environment_system", - "name": "demo_environment_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 286, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_tokenizer_system", - "name": "demo_tokenizer_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 418, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 334, - "column_start": 24, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_parser_system", - "name": "demo_parser_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 577, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_count_method_calls", - "name": "count_method_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 618, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_interpreter_system", - "name": "demo_interpreter_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 998, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_main_functionality", - "name": "test_main_functionality", - "symbol_type": "Function", - "file_path": "", - "line_start": 1005, - "line_end": 1011, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "map_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/map_box.rs", - "language": "rust", - "size_bytes": 5606, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.330382345Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_keys", - "name": "keys", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_values", - "name": "values", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_forEach", - "name": "forEach", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toJSON", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MapBox", - "name": "MapBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/math_box.rs", - "language": "rust", - "size_bytes": 13527, - "total_lines": 408, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.334897139Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_abs", - "name": "abs", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_max", - "name": "max", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_min", - "name": "min", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pow", - "name": "pow", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sqrt", - "name": "sqrt", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getPi", - "name": "getPi", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getE", - "name": "getE", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sin", - "name": "sin", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cos", - "name": "cos", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tan", - "name": "tan", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log10", - "name": "log10", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exp", - "name": "exp", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_floor", - "name": "floor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ceil", - "name": "ceil", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_round", - "name": "round", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_iter", - "name": "iter", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MathBox", - "name": "MathBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FloatBox", - "name": "FloatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RangeBox", - "name": "RangeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 331, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "method_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/method_box.rs", - "language": "rust", - "size_bytes": 6362, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.339094849Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 75, - "column_start": 51, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_instance", - "name": "get_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_instance", - "name": "from_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_local", - "name": "set_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_local", - "name": "get_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 34, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_method_box", - "name": "create_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxType", - "name": "BoxType", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDefinition", - "name": "FunctionDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodBox", - "name": "MethodBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EphemeralInstance", - "name": "EphemeralInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "null_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/null_box.rs", - "language": "rust", - "size_bytes": 3803, - "total_lines": 149, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.342781643Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_not_null", - "name": "is_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_null", - "name": "check_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_not_null", - "name": "check_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_or_default", - "name": "get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_creation", - "name": "test_null_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_check", - "name": "test_null_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_equality", - "name": "test_null_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_get_or_default", - "name": "test_get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NullBox", - "name": "NullBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parser.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/parser.rs", - "language": "rust", - "size_bytes": 69276, - "total_lines": 1824, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.349066240Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_string", - "name": "parse_from_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_program", - "name": "parse_program", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_box_declaration", - "name": "parse_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_interface_box_declaration", - "name": "parse_interface_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 500, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_global_var", - "name": "parse_global_var", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 523, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_if", - "name": "parse_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 535, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_loop", - "name": "parse_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 547, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_loop_structure", - "name": "extract_loop_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 563, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_condition_tokens", - "name": "extract_condition_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 593, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_loop_content", - "name": "parse_loop_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 608, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_break", - "name": "parse_break", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 614, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_return", - "name": "parse_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 617, - "line_end": 631, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 642, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_nowait", - "name": "parse_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 667, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_declaration", - "name": "parse_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 732, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_static_function_declaration", - "name": "parse_static_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 816, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_assignment_or_function_call", - "name": "parse_assignment_or_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 847, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_expression", - "name": "parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 854, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_or", - "name": "parse_or", - "symbol_type": "Function", - "file_path": "", - "line_start": 857, - "line_end": 873, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_and", - "name": "parse_and", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 892, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_equality", - "name": "parse_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 915, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_comparison", - "name": "parse_comparison", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 943, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_term", - "name": "parse_term", - "symbol_type": "Function", - "file_path": "", - "line_start": 946, - "line_end": 977, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_factor", - "name": "parse_factor", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 996, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_unary", - "name": "parse_unary", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1011, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_call", - "name": "parse_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1014, - "line_end": 1086, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1089, - "line_end": 1228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_token", - "name": "current_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 1233, - "line_end": 1239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 1242, - "line_end": 1246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_newlines", - "name": "skip_newlines", - "symbol_type": "Function", - "file_path": "", - "line_start": 1249, - "line_end": 1253, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 1256, - "line_end": 1270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_match_token", - "name": "match_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 1273, - "line_end": 1276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 1279, - "line_end": 1282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_include", - "name": "parse_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 1285, - "line_end": 1303, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_local", - "name": "parse_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 1306, - "line_end": 1342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_outbox", - "name": "parse_outbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 1345, - "line_end": 1381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_try_catch", - "name": "parse_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 1384, - "line_end": 1467, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_throw", - "name": "parse_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 1471, - "line_end": 1478, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_block_tokens", - "name": "extract_block_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 1483, - "line_end": 1515, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_token_block", - "name": "parse_token_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 1518, - "line_end": 1549, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_if_structure", - "name": "extract_if_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1588, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_if_condition_tokens", - "name": "extract_if_condition_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 1591, - "line_end": 1622, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_if_content", - "name": "parse_if_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1674, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_token_sequence", - "name": "parse_token_sequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 1677, - "line_end": 1698, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_parse", - "name": "test_simple_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 1709, - "line_end": 1735, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_assignment_parse", - "name": "test_assignment_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 1738, - "line_end": 1764, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_call_parse", - "name": "test_method_call_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 1767, - "line_end": 1791, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operation_parse", - "name": "test_binary_operation_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 1794, - "line_end": 1823, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LoopStructure", - "name": "LoopStructure", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_IfStructure", - "name": "IfStructure", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ElseIfClause", - "name": "ElseIfClause", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ParseError", - "name": "ParseError", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "random_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/random_box.rs", - "language": "rust", - "size_bytes": 7970, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.355975141Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seed", - "name": "seed", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next_random", - "name": "next_random", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_random", - "name": "random", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randInt", - "name": "randInt", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randBool", - "name": "randBool", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_choice", - "name": "choice", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shuffle", - "name": "shuffle", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randString", - "name": "randString", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_probability", - "name": "probability", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RandomBox", - "name": "RandomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sound_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/sound_box.rs", - "language": "rust", - "size_bytes": 7482, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.359957222Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beep", - "name": "beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beeps", - "name": "beeps", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tone", - "name": "tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_alert", - "name": "alert", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pattern", - "name": "pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_volumeTest", - "name": "volumeTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_interval", - "name": "interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SoundBox", - "name": "SoundBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "time_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/time_box.rs", - "language": "rust", - "size_bytes": 10499, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.364198948Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fromTimestamp", - "name": "fromTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sleep", - "name": "sleep", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_timestamp", - "name": "from_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_year", - "name": "year", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_month", - "name": "month", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_day", - "name": "day", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hour", - "name": "hour", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_minute", - "name": "minute", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_second", - "name": "second", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_timestamp", - "name": "timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toISOString", - "name": "toISOString", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addDays", - "name": "addDays", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addHours", - "name": "addHours", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_elapsed", - "name": "elapsed", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 351, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 365, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TimeBox", - "name": "TimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBox", - "name": "DateTimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimerBox", - "name": "TimerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tokenizer.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/tokenizer.rs", - "language": "rust", - "size_bytes": 19793, - "total_lines": 601, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.368920817Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize_next", - "name": "tokenize_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_string", - "name": "read_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_numeric_literal", - "name": "read_numeric_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 328, - "column_start": 77, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 342, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 347, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_keyword_or_identifier", - "name": "read_keyword_or_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 395, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_line_comment", - "name": "skip_line_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_char", - "name": "current_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_char", - "name": "peek_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 426, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 439, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 444, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_tokens", - "name": "test_simple_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_literal", - "name": "test_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 478, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_number_literal", - "name": "test_number_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_identifier", - "name": "test_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 518, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_operators", - "name": "test_operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 532, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_code", - "name": "test_complex_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 559, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 553, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_line_numbers", - "name": "test_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_comments", - "name": "test_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 584, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 582, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 600, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TokenType", - "name": "TokenType", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TokenizeError", - "name": "TokenizeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_box.rs", - "path": "./development/archive/old_implementation/backup_before_cleanup/src/type_box.rs", - "language": "rust", - "size_bytes": 12533, - "total_lines": 433, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.373935209Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_types", - "name": "with_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_builtin", - "name": "builtin", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_field", - "name": "add_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_type_parameter", - "name": "add_type_parameter", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_concrete_type", - "name": "set_concrete_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_type", - "name": "get_field_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method_signature", - "name": "get_method_signature", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible_with", - "name": "is_compatible_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_generic", - "name": "is_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_concrete_generic", - "name": "is_concrete_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_full_name", - "name": "full_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 21, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 29, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 40, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_void_type", - "name": "void_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_string_type", - "name": "string_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_integer_type", - "name": "integer_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bool_type", - "name": "bool_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_array_type", - "name": "array_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method_box_type", - "name": "method_box_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_builtin_types", - "name": "register_builtin_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_type", - "name": "register_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type", - "name": "get_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible", - "name": "is_compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_all_type_names", - "name": "get_all_type_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_instantiate_generic", - "name": "instantiate_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 389, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 358, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 379, - "column_start": 28, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_field", - "name": "field", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method", - "name": "method", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent", - "name": "parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_param", - "name": "type_param", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MethodSignature", - "name": "MethodSignature", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBox", - "name": "TypeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeRegistry", - "name": "TypeRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 290, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBoxBuilder", - "name": "TypeBoxBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 393, - "line_end": 395, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_parser_static.rs", - "path": "./development/archive/old_implementation/debug_parser_static.rs", - "language": "rust", - "size_bytes": 723, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.386061523Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_tokenizer.rs", - "path": "./development/archive/old_implementation/debug_tokenizer.rs", - "language": "rust", - "size_bytes": 350, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.391023009Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 3, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ast.rs", - "path": "./development/archive/old_implementation/src/ast.rs", - "language": "rust", - "size_bytes": 31854, - "total_lines": 963, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.426780557Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unknown", - "name": "unknown", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error_context", - "name": "error_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_location_string", - "name": "location_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_nyash_box", - "name": "to_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_nyash_box", - "name": "from_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_node_type", - "name": "node_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 617, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_classify", - "name": "classify", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 659, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_structure", - "name": "is_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_expression", - "name": "is_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_statement", - "name": "is_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_info", - "name": "info", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 787, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_span", - "name": "span", - "symbol_type": "Function", - "file_path": "", - "line_start": 790, - "line_end": 823, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 827, - "line_end": 829, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_param_count", - "name": "get_param_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 834, - "line_end": 839, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_node_creation", - "name": "test_ast_node_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 850, - "line_end": 880, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operator", - "name": "test_binary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 892, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_ast", - "name": "test_complex_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 931, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_call", - "name": "test_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 934, - "line_end": 947, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operation", - "name": "test_binary_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 950, - "line_end": 962, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Span", - "name": "Span", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNodeType", - "name": "ASTNodeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StructureNode", - "name": "StructureNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExpressionNode", - "name": "ExpressionNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 195, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StatementNode", - "name": "StatementNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CatchClause", - "name": "CatchClause", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LiteralValue", - "name": "LiteralValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_UnaryOperator", - "name": "UnaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOperator", - "name": "BinaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 313, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 360, - "line_end": 580, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bool_box.rs", - "path": "./development/archive/old_implementation/src/boxes/bool_box.rs", - "language": "rust", - "size_bytes": 1561, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.432335902Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_box.rs", - "path": "./development/archive/old_implementation/src/boxes/debug_box.rs", - "language": "rust", - "size_bytes": 8396, - "total_lines": 246, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.436010055Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_tracking", - "name": "start_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_tracking", - "name": "stop_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_fields", - "name": "get_box_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all", - "name": "dump_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_file", - "name": "save_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_watch", - "name": "watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_memory_report", - "name": "memory_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_breakpoint", - "name": "set_breakpoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trace_call", - "name": "trace_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_call_stack", - "name": "show_call_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_tracking", - "name": "is_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_tracked_count", - "name": "get_tracked_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugBox", - "name": "DebugBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TrackedBoxInfo", - "name": "TrackedBoxInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_CallInfo", - "name": "CallInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integer_box.rs", - "path": "./development/archive/old_implementation/src/boxes/integer_box.rs", - "language": "rust", - "size_bytes": 1467, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.439758258Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "map_box.rs", - "path": "./development/archive/old_implementation/src/boxes/map_box.rs", - "language": "rust", - "size_bytes": 5606, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.443190169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_keys", - "name": "keys", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_values", - "name": "values", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_forEach", - "name": "forEach", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toJSON", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MapBox", - "name": "MapBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_box.rs", - "path": "./development/archive/old_implementation/src/boxes/math_box.rs", - "language": "rust", - "size_bytes": 13527, - "total_lines": 408, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.447415818Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_abs", - "name": "abs", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_max", - "name": "max", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_min", - "name": "min", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pow", - "name": "pow", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sqrt", - "name": "sqrt", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getPi", - "name": "getPi", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getE", - "name": "getE", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sin", - "name": "sin", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cos", - "name": "cos", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tan", - "name": "tan", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log10", - "name": "log10", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exp", - "name": "exp", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_floor", - "name": "floor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ceil", - "name": "ceil", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_round", - "name": "round", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_iter", - "name": "iter", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MathBox", - "name": "MathBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FloatBox", - "name": "FloatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 274, - "line_end": 277, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RangeBox", - "name": "RangeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 331, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./development/archive/old_implementation/src/boxes/mod.rs", - "language": "rust", - "size_bytes": 824, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.451397181Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "null_box.rs", - "path": "./development/archive/old_implementation/src/boxes/null_box.rs", - "language": "rust", - "size_bytes": 3803, - "total_lines": 149, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.454541044Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_not_null", - "name": "is_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_null", - "name": "check_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_not_null", - "name": "check_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_or_default", - "name": "get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_creation", - "name": "test_null_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_check", - "name": "test_null_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_equality", - "name": "test_null_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_get_or_default", - "name": "test_get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NullBox", - "name": "NullBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "random_box.rs", - "path": "./development/archive/old_implementation/src/boxes/random_box.rs", - "language": "rust", - "size_bytes": 7974, - "total_lines": 225, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.458460599Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seed", - "name": "seed", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next_random", - "name": "next_random", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_random", - "name": "random", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randInt", - "name": "randInt", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randBool", - "name": "randBool", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_choice", - "name": "choice", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shuffle", - "name": "shuffle", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randString", - "name": "randString", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_probability", - "name": "probability", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RandomBox", - "name": "RandomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sound_box.rs", - "path": "./development/archive/old_implementation/src/boxes/sound_box.rs", - "language": "rust", - "size_bytes": 7482, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.462317861Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beep", - "name": "beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beeps", - "name": "beeps", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tone", - "name": "tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_alert", - "name": "alert", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pattern", - "name": "pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_volumeTest", - "name": "volumeTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_interval", - "name": "interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SoundBox", - "name": "SoundBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_box.rs", - "path": "./development/archive/old_implementation/src/boxes/string_box.rs", - "language": "rust", - "size_bytes": 4356, - "total_lines": 141, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.465939034Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "time_box.rs", - "path": "./development/archive/old_implementation/src/boxes/time_box.rs", - "language": "rust", - "size_bytes": 10499, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.469825793Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fromTimestamp", - "name": "fromTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sleep", - "name": "sleep", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_timestamp", - "name": "from_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_year", - "name": "year", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_month", - "name": "month", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_day", - "name": "day", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hour", - "name": "hour", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_minute", - "name": "minute", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_second", - "name": "second", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_timestamp", - "name": "timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toISOString", - "name": "toISOString", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addDays", - "name": "addDays", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addHours", - "name": "addHours", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_elapsed", - "name": "elapsed", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 351, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 365, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TimeBox", - "name": "TimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBox", - "name": "DateTimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimerBox", - "name": "TimerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_trait.rs", - "path": "./development/archive/old_implementation/src/box_trait.rs", - "language": "rust", - "size_bytes": 42202, - "total_lines": 1444, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.477352445Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 357, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_elements", - "name": "new_with_elements", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pop", - "name": "pop", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 437, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 434, - "column_start": 17, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 441, - "column_start": 53, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 453, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 463, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 460, - "column_start": 17, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 527, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 537, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 546, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 551, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 559, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 567, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 581, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 585, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 589, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 591, - "line_end": 593, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 597, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 603, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 635, - "line_end": 641, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 645, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 653, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 657, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 663, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_success", - "name": "new_success", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 689, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_error", - "name": "new_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_ok", - "name": "is_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 711, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_value", - "name": "get_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_error", - "name": "get_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 727, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 745, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 747, - "line_end": 771, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 773, - "line_end": 775, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 777, - "line_end": 791, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 795, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 799, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 803, - "line_end": 805, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 823, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 827, - "line_end": 839, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_result", - "name": "set_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 842, - "line_end": 847, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 850, - "line_end": 863, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ready", - "name": "ready", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_wait_and_get", - "name": "wait_and_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 871, - "line_end": 881, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 879, - "line_end": 879, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 880, - "column_start": 24, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 897, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 905, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 907, - "line_end": 909, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 913, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 915, - "line_end": 917, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 919, - "line_end": 921, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 927, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 948, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 951, - "line_end": 990, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 994, - "line_end": 1000, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1004, - "line_end": 1007, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 1009, - "line_end": 1017, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1021, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1023, - "line_end": 1028, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 1030, - "line_end": 1032, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 1034, - "line_end": 1036, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1048, - "line_end": 1050, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 1052, - "line_end": 1089, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1099, - "line_end": 1101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 1103, - "line_end": 1140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1150, - "line_end": 1152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 1154, - "line_end": 1207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less", - "name": "less", - "symbol_type": "Function", - "file_path": "", - "line_start": 1214, - "line_end": 1250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater", - "name": "greater", - "symbol_type": "Function", - "file_path": "", - "line_start": 1252, - "line_end": 1288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less_equal", - "name": "less_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1290, - "line_end": 1326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater_equal", - "name": "greater_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1328, - "line_end": 1364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_box_creation", - "name": "test_string_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1374, - "line_end": 1379, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_integer_box_creation", - "name": "test_integer_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1382, - "line_end": 1387, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bool_box_creation", - "name": "test_bool_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1390, - "line_end": 1395, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_equality", - "name": "test_box_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 1398, - "line_end": 1405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_integers", - "name": "test_add_box_integers", - "symbol_type": "Function", - "file_path": "", - "line_start": 1408, - "line_end": 1416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_strings", - "name": "test_add_box_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 1419, - "line_end": 1427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_ids_unique", - "name": "test_box_ids_unique", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1436, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_void_box", - "name": "test_void_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1439, - "line_end": 1443, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashBox", - "name": "NyashBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 314, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ArrayBox", - "name": "ArrayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 368, - "line_end": 371, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 510, - "line_end": 513, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 608, - "line_end": 612, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ResultBox", - "name": "ResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 668, - "line_end": 673, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FutureBox", - "name": "FutureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 810, - "line_end": 814, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AddBox", - "name": "AddBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 933, - "line_end": 937, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SubtractBox", - "name": "SubtractBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1042, - "line_end": 1045, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MultiplyBox", - "name": "MultiplyBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1093, - "line_end": 1096, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DivideBox", - "name": "DivideBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1144, - "line_end": 1147, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompareBox", - "name": "CompareBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 1211, - "line_end": 1211, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel_box.rs", - "path": "./development/archive/old_implementation/src/channel_box.rs", - "language": "rust", - "size_bytes": 6470, - "total_lines": 226, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.483135303Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_link", - "name": "link", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_handler", - "name": "register_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 21, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 32, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sender", - "name": "sender", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_receiver", - "name": "receiver", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_broadcast", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ChannelBox", - "name": "ChannelBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MessageBox", - "name": "MessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "environment.rs", - "path": "./development/archive/old_implementation/src/environment.rs", - "language": "rust", - "size_bytes": 12850, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.487335941Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_global", - "name": "new_global", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_child", - "name": "new_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_undefine", - "name": "undefine", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_variables", - "name": "list_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_info", - "name": "scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_chain_info", - "name": "scope_chain_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all_variables", - "name": "dump_all_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all_boxes", - "name": "finalize_all_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_parent", - "name": "new_with_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 60, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_native", - "name": "as_native", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_global_environment", - "name": "test_global_environment", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_nested_scopes", - "name": "test_nested_scopes", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_shadowing", - "name": "test_variable_shadowing", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_setting", - "name": "test_variable_setting", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_scope_info", - "name": "test_scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_python_compat", - "name": "test_python_compat", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Environment", - "name": "Environment", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EnvironmentError", - "name": "EnvironmentError", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PythonCompatEnvironment", - "name": "PythonCompatEnvironment", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exception_box.rs", - "path": "./development/archive/old_implementation/src/exception_box.rs", - "language": "rust", - "size_bytes": 2659, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.491215211Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_cause", - "name": "with_cause", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_stack_frame", - "name": "add_stack_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_full_message", - "name": "get_full_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_exception_type", - "name": "is_exception_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_exception", - "name": "create_exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "finalization.rs", - "path": "./development/archive/old_implementation/src/finalization.rs", - "language": "rust", - "size_bytes": 3224, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.494767664Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_as_finalized", - "name": "mark_as_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track", - "name": "track", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all", - "name": "finalize_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_finalization_tracking", - "name": "test_finalization_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxFinalizer", - "name": "BoxFinalizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instance.rs", - "path": "./development/archive/old_implementation/src/instance.rs", - "language": "rust", - "size_bytes": 6444, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.498318684Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 56, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_dynamic", - "name": "set_field_dynamic", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method", - "name": "get_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_method", - "name": "has_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instance_creation", - "name": "test_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_field_access", - "name": "test_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instance_equality", - "name": "test_instance_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_InstanceBox", - "name": "InstanceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_methods.rs", - "path": "./development/archive/old_implementation/src/interpreter/box_methods.rs", - "language": "rust", - "size_bytes": 55280, - "total_lines": 1314, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.505081369Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_string_method", - "name": "execute_string_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_integer_method", - "name": "execute_integer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_array_method", - "name": "execute_array_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_file_method", - "name": "execute_file_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_result_method", - "name": "execute_result_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_future_method", - "name": "execute_future_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_channel_method", - "name": "execute_channel_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_math_method", - "name": "execute_math_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 536, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_null_method", - "name": "execute_null_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 591, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_time_method", - "name": "execute_time_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_datetime_method", - "name": "execute_datetime_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 755, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_timer_method", - "name": "execute_timer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 757, - "line_end": 792, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_map_method", - "name": "execute_map_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 890, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_random_method", - "name": "execute_random_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 972, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_sound_method", - "name": "execute_sound_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 1062, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_debug_method", - "name": "execute_debug_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1182, - "column_start": 25, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_method_box_method", - "name": "execute_method_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1227, - "line_end": 1246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_method_box", - "name": "invoke_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1249, - "line_end": 1313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.rs", - "path": "./development/archive/old_implementation/src/interpreter/core.rs", - "language": "rust", - "size_bytes": 23608, - "total_lines": 652, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.511384392Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_detailed_message", - "name": "detailed_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_shared", - "name": "with_shared", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_node", - "name": "execute_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_variable", - "name": "set_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_local_variable", - "name": "declare_local_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_outbox_variable", - "name": "declare_outbox_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_local_vars", - "name": "save_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_local_vars", - "name": "restore_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 318, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_outbox_vars", - "name": "save_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 323, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_outbox_vars", - "name": "restore_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_global_function", - "name": "register_global_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 336, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_truthy", - "name": "is_truthy", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable", - "name": "get_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_execution", - "name": "test_simple_execution", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_arithmetic", - "name": "test_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 400, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_statement", - "name": "test_if_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_instance_creation", - "name": "test_box_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 453, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_static_box", - "name": "register_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 469, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 465, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_static_box_declaration", - "name": "register_static_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 500, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_static_box_initialized", - "name": "ensure_static_box_initialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 569, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 509, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_static_box_state", - "name": "set_static_box_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 583, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 576, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_statics_namespace", - "name": "ensure_statics_namespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 613, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 590, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_static_instance", - "name": "set_static_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 616, - "line_end": 642, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 620, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_static_box", - "name": "is_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 651, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RuntimeError", - "name": "RuntimeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SharedState", - "name": "SharedState", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 154, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "expressions.rs", - "path": "./development/archive/old_implementation/src/interpreter/expressions.rs", - "language": "rust", - "size_bytes": 25980, - "total_lines": 594, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.516426555Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_expression", - "name": "execute_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binary_op", - "name": "execute_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unary_op", - "name": "execute_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_method_call", - "name": "execute_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 509, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 40, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_field_access", - "name": "execute_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 537, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_static_field_access", - "name": "execute_static_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 578, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 549, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_await", - "name": "execute_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 593, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 588, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "functions.rs", - "path": "./development/archive/old_implementation/src/interpreter/functions.rs", - "language": "rust", - "size_bytes": 4106, - "total_lines": 96, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.520649180Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_function_call", - "name": "execute_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_function_declaration", - "name": "register_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 69, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "io.rs", - "path": "./development/archive/old_implementation/src/interpreter/io.rs", - "language": "rust", - "size_bytes": 4459, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.524020978Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_include", - "name": "execute_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_arrow", - "name": "execute_arrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nowait", - "name": "execute_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 106, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./development/archive/old_implementation/src/interpreter/mod.rs", - "language": "rust", - "size_bytes": 2888, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.527343673Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_ControlFlow", - "name": "ControlFlow", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConstructorContext", - "name": "ConstructorContext", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxDeclaration", - "name": "BoxDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StaticBoxDefinition", - "name": "StaticBoxDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StaticBoxState", - "name": "StaticBoxState", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDeclaration", - "name": "FunctionDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "objects.rs", - "path": "./development/archive/old_implementation/src/interpreter/objects.rs", - "language": "rust", - "size_bytes": 29692, - "total_lines": 649, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.531596819Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_new", - "name": "execute_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 336, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_constructor", - "name": "execute_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box_declaration", - "name": "register_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_generic_arguments", - "name": "validate_generic_arguments", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 469, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_valid_type", - "name": "is_valid_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_parent_constructor", - "name": "execute_parent_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 515, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 503, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_inheritance", - "name": "resolve_inheritance", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 588, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_specialize_generic_class", - "name": "specialize_generic_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 591, - "line_end": 637, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_substitute_types_in_fields", - "name": "substitute_types_in_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 648, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "statements.rs", - "path": "./development/archive/old_implementation/src/interpreter/statements.rs", - "language": "rust", - "size_bytes": 19226, - "total_lines": 427, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.536997827Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_statement", - "name": "execute_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_if", - "name": "execute_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_loop", - "name": "execute_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_assignment", - "name": "execute_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_try_catch", - "name": "execute_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 410, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_throw", - "name": "execute_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 426, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./development/archive/old_implementation/src/lib.rs", - "language": "rust", - "size_bytes": 1433, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.541299222Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./development/archive/old_implementation/src/main.rs", - "language": "rust", - "size_bytes": 35787, - "total_lines": 1006, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.545660298Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nyash_file", - "name": "execute_nyash_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_basic_boxes", - "name": "demo_basic_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_operations", - "name": "demo_box_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 159, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_collections", - "name": "demo_box_collections", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_environment_system", - "name": "demo_environment_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 280, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_tokenizer_system", - "name": "demo_tokenizer_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 328, - "column_start": 24, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_parser_system", - "name": "demo_parser_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 571, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_count_method_calls", - "name": "count_method_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 612, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_interpreter_system", - "name": "demo_interpreter_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 614, - "line_end": 992, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_main_functionality", - "name": "test_main_functionality", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1005, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "method_box.rs", - "path": "./development/archive/old_implementation/src/method_box.rs", - "language": "rust", - "size_bytes": 6362, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.550561525Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 75, - "column_start": 51, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_instance", - "name": "get_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_instance", - "name": "from_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_local", - "name": "set_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_local", - "name": "get_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 34, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_method_box", - "name": "create_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxType", - "name": "BoxType", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDefinition", - "name": "FunctionDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodBox", - "name": "MethodBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EphemeralInstance", - "name": "EphemeralInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parser.rs", - "path": "./development/archive/old_implementation/src/parser.rs", - "language": "rust", - "size_bytes": 88020, - "total_lines": 2279, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.558006877Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_string", - "name": "parse_from_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_program", - "name": "parse_program", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_box_declaration", - "name": "parse_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 417, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_interface_box_declaration", - "name": "parse_interface_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 513, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_global_var", - "name": "parse_global_var", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 536, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_if", - "name": "parse_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 548, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_loop", - "name": "parse_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 560, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_loop_structure", - "name": "extract_loop_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 576, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_condition_tokens", - "name": "extract_condition_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 606, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_loop_content", - "name": "parse_loop_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 621, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_break", - "name": "parse_break", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_return", - "name": "parse_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 630, - "line_end": 644, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_nowait", - "name": "parse_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 658, - "line_end": 680, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_declaration", - "name": "parse_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 745, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_static_declaration", - "name": "parse_static_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 764, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_static_function", - "name": "parse_static_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 847, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_static_box", - "name": "parse_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 850, - "line_end": 1098, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_assignment_or_function_call", - "name": "parse_assignment_or_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1101, - "line_end": 1129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_expression", - "name": "parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_or", - "name": "parse_or", - "symbol_type": "Function", - "file_path": "", - "line_start": 1139, - "line_end": 1155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_and", - "name": "parse_and", - "symbol_type": "Function", - "file_path": "", - "line_start": 1158, - "line_end": 1174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_equality", - "name": "parse_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_comparison", - "name": "parse_comparison", - "symbol_type": "Function", - "file_path": "", - "line_start": 1200, - "line_end": 1225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_term", - "name": "parse_term", - "symbol_type": "Function", - "file_path": "", - "line_start": 1228, - "line_end": 1259, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_factor", - "name": "parse_factor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1262, - "line_end": 1282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_unary", - "name": "parse_unary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1285, - "line_end": 1316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_call", - "name": "parse_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1319, - "line_end": 1391, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1394, - "line_end": 1533, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_token", - "name": "current_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 1538, - "line_end": 1544, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 1547, - "line_end": 1551, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_newlines", - "name": "skip_newlines", - "symbol_type": "Function", - "file_path": "", - "line_start": 1554, - "line_end": 1558, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 1561, - "line_end": 1575, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_match_token", - "name": "match_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 1578, - "line_end": 1581, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 1584, - "line_end": 1587, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_include", - "name": "parse_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 1590, - "line_end": 1608, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_local", - "name": "parse_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 1611, - "line_end": 1670, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_outbox", - "name": "parse_outbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 1673, - "line_end": 1714, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_try_catch", - "name": "parse_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 1717, - "line_end": 1800, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_throw", - "name": "parse_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 1804, - "line_end": 1811, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_block_tokens", - "name": "extract_block_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 1816, - "line_end": 1848, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_token_block", - "name": "parse_token_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 1851, - "line_end": 1882, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_if_structure", - "name": "extract_if_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1885, - "line_end": 1921, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_if_condition_tokens", - "name": "extract_if_condition_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 1924, - "line_end": 1955, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_if_content", - "name": "parse_if_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 1958, - "line_end": 2007, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_token_sequence", - "name": "parse_token_sequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 2010, - "line_end": 2031, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_dependencies_from_statements", - "name": "extract_dependencies_from_statements", - "symbol_type": "Function", - "file_path": "", - "line_start": 2036, - "line_end": 2044, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_dependencies_from_ast", - "name": "extract_dependencies_from_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 2047, - "line_end": 2100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_circular_dependencies", - "name": "check_circular_dependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 2103, - "line_end": 2117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_cycle_dfs", - "name": "has_cycle_dfs", - "symbol_type": "Function", - "file_path": "", - "line_start": 2120, - "line_end": 2153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 2139, - "line_end": 2139, - "column_start": 63, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_parse", - "name": "test_simple_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 2164, - "line_end": 2190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_assignment_parse", - "name": "test_assignment_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 2193, - "line_end": 2219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_call_parse", - "name": "test_method_call_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 2222, - "line_end": 2246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operation_parse", - "name": "test_binary_operation_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 2249, - "line_end": 2278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LoopStructure", - "name": "LoopStructure", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_IfStructure", - "name": "IfStructure", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ElseIfClause", - "name": "ElseIfClause", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ParseError", - "name": "ParseError", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tokenizer.rs", - "path": "./development/archive/old_implementation/src/tokenizer.rs", - "language": "rust", - "size_bytes": 20221, - "total_lines": 612, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.565447321Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize_next", - "name": "tokenize_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_string", - "name": "read_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_numeric_literal", - "name": "read_numeric_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 77, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 349, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 354, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_keyword_or_identifier", - "name": "read_keyword_or_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_line_comment", - "name": "skip_line_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_char", - "name": "current_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_char", - "name": "peek_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 437, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 450, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 455, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_tokens", - "name": "test_simple_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 477, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_literal", - "name": "test_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 489, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_number_literal", - "name": "test_number_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 509, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_identifier", - "name": "test_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 529, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_operators", - "name": "test_operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 543, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_code", - "name": "test_complex_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 564, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_line_numbers", - "name": "test_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 581, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_comments", - "name": "test_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 595, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 593, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 611, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TokenType", - "name": "TokenType", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TokenizeError", - "name": "TokenizeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_box.rs", - "path": "./development/archive/old_implementation/src/type_box.rs", - "language": "rust", - "size_bytes": 12533, - "total_lines": 433, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:36.570262298Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_types", - "name": "with_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_builtin", - "name": "builtin", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_field", - "name": "add_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_type_parameter", - "name": "add_type_parameter", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_concrete_type", - "name": "set_concrete_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_type", - "name": "get_field_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method_signature", - "name": "get_method_signature", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible_with", - "name": "is_compatible_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_generic", - "name": "is_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_concrete_generic", - "name": "is_concrete_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_full_name", - "name": "full_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 21, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 29, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 40, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_void_type", - "name": "void_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_string_type", - "name": "string_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_integer_type", - "name": "integer_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bool_type", - "name": "bool_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_array_type", - "name": "array_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method_box_type", - "name": "method_box_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_builtin_types", - "name": "register_builtin_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_type", - "name": "register_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type", - "name": "get_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible", - "name": "is_compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_all_type_names", - "name": "get_all_type_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_instantiate_generic", - "name": "instantiate_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 389, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 358, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 379, - "column_start": 28, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_field", - "name": "field", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method", - "name": "method", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 415, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent", - "name": "parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_param", - "name": "type_param", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MethodSignature", - "name": "MethodSignature", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBox", - "name": "TypeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeRegistry", - "name": "TypeRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 290, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBoxBuilder", - "name": "TypeBoxBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 393, - "line_end": 395, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integration_tests.rs", - "path": "./development/archive/old_implementation/tests/integration_tests.rs", - "language": "rust", - "size_bytes": 9803, - "total_lines": 384, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.272308415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_nyash_code", - "name": "execute_nyash_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable_value", - "name": "get_variable_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 45, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_arithmetic", - "name": "test_basic_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_operations", - "name": "test_string_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_boolean_logic", - "name": "test_boolean_logic", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_comparison_operators", - "name": "test_comparison_operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_else_statements", - "name": "test_if_else_statements", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_loop_with_break", - "name": "test_loop_with_break", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_function_declaration_and_call", - "name": "test_function_declaration_and_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_instance_creation", - "name": "test_box_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_this_binding_in_methods", - "name": "test_this_binding_in_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_chaining_concept", - "name": "test_method_chaining_concept", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiple_instances", - "name": "test_multiple_instances", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_global_variables", - "name": "test_global_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_expression_evaluation", - "name": "test_complex_expression_evaluation", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_nested_method_calls", - "name": "test_nested_method_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_all_numeric_operations", - "name": "test_all_numeric_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_the_debug_this_problem", - "name": "test_the_debug_this_problem", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_local.rs", - "path": "./development/archive/old_implementation/test_local.rs", - "language": "rust", - "size_bytes": 263, - "total_lines": 11, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.306100460Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_tokenize_static.rs", - "path": "./development/archive/old_implementation/test_tokenize_static.rs", - "language": "rust", - "size_bytes": 88, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.337750549Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_socketbox.rs", - "path": "./development/debug_files/debug_socketbox.rs", - "language": "rust", - "size_bytes": 6866, - "total_lines": 192, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.362583140Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_debug_log", - "name": "debug_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bind", - "name": "bind", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_server", - "name": "is_server", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_debug_socketbox", - "name": "test_debug_socketbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugSocketBox", - "name": "DebugSocketBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_test.rs", - "path": "./development/debug_files/mir_test.rs", - "language": "rust", - "size_bytes": 1743, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.367025051Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_mir_phase5.rs", - "path": "./development/debug_files/test_mir_phase5.rs", - "language": "rust", - "size_bytes": 3527, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.371622292Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_with_counter.rs", - "path": "./development/debug_hang_issue/debug_with_counter.rs", - "language": "rust", - "size_bytes": 840, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.377504622Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "egui_widgets_demo.rs", - "path": "./development/egui_research/examples/egui_widgets_demo.rs", - "language": "rust", - "size_bytes": 12877, - "total_lines": 402, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.391009661Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_basic_widgets", - "name": "show_basic_widgets", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 112, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 142, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 150, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_advanced_widgets", - "name": "show_advanced_widgets", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 170, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 188, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 203, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 202, - "column_start": 29, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 217, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_layout_demos", - "name": "show_layout_demos", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 263, - "column_start": 22, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 272, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 284, - "column_start": 22, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_custom_demos", - "name": "show_custom_demos", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 334, - "column_start": 82, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_dummy_image", - "name": "create_dummy_image", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 378, - "column_start": 54, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 73, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 388, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 400, - "column_start": 23, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WidgetDemo", - "name": "WidgetDemo", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_RadioOption", - "name": "RadioOption", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Tab", - "name": "Tab", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "visual_node_prototype.rs", - "path": "./development/egui_research/experiments/visual_node_prototype.rs", - "language": "rust", - "size_bytes": 15383, - "total_lines": 443, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:37.396915440Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_color", - "name": "color", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_icon", - "name": "icon", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_rect", - "name": "rect", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_node", - "name": "add_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_node", - "name": "draw_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_connection", - "name": "draw_connection", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bezier_points", - "name": "bezier_points", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 309, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 346, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 331, - "column_start": 30, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 366, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 365, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 425, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 375, - "column_start": 34, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 381, - "column_start": 34, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 441, - "column_start": 58, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 440, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxType", - "name": "BoxType", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_VisualNode", - "name": "VisualNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Connection", - "name": "Connection", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_VisualProgramming", - "name": "VisualProgramming", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/archive/main.js", - "language": "javascript", - "size_bytes": 66887, - "total_lines": 1703, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.773900385Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeOnCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeNodeDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertiesPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePortClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawTempConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExecutionFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleNodeClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 869, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 935, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 930, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 972, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "ensureMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1018, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1086, - "line_end": 1088, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1097, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1100, - "line_end": 1103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnectionWithBaseCoords", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawBundledConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1191, - "line_end": 1292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1280, - "line_end": 1286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionDeleteDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1301, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDeleteModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1307, - "line_end": 1541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1431, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1432, - "line_end": 1432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1435, - "line_end": 1437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1436, - "line_end": 1436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1457, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1461, - "line_end": 1461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1482, - "line_end": 1484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1487, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1495, - "line_end": 1498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1525, - "line_end": 1527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1534, - "line_end": 1538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1544, - "line_end": 1557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1545, - "line_end": 1548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1551, - "line_end": 1551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1560, - "line_end": 1646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1598, - "line_end": 1601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1621, - "line_end": 1624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1628, - "line_end": 1630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1637, - "line_end": 1642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1643, - "line_end": 1645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1649, - "line_end": 1691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1688, - "line_end": 1690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1701, - "line_end": 1703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 539, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 872, - "line_end": 1692, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/archive/old-versions/main.js", - "language": "javascript", - "size_bytes": 66887, - "total_lines": 1703, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.785830548Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeOnCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeNodeDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertiesPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePortClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawTempConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExecutionFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleNodeClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 869, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 935, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 930, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 972, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "ensureMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1018, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1086, - "line_end": 1088, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1097, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1100, - "line_end": 1103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnectionWithBaseCoords", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawBundledConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1191, - "line_end": 1292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1280, - "line_end": 1286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionDeleteDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1301, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDeleteModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1307, - "line_end": 1541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1431, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1432, - "line_end": 1432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1435, - "line_end": 1437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1436, - "line_end": 1436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1457, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1461, - "line_end": 1461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1482, - "line_end": 1484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1487, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1495, - "line_end": 1498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1525, - "line_end": 1527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1534, - "line_end": 1538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1544, - "line_end": 1557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1545, - "line_end": 1548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1551, - "line_end": 1551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1560, - "line_end": 1646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1598, - "line_end": 1601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1621, - "line_end": 1624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1628, - "line_end": 1630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1637, - "line_end": 1642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1643, - "line_end": 1645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1649, - "line_end": 1691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1688, - "line_end": 1690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1701, - "line_end": 1703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 539, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 872, - "line_end": 1692, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-boot-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-boot-manager.js", - "language": "javascript", - "size_bytes": 10560, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.803375216Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVoidFlowBootStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkVoidFlowComponentsReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForComponentReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleComponentStatusChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startStatusMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowBootManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-core.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-core.js", - "language": "javascript", - "size_bytes": 32009, - "total_lines": 974, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.809224122Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementSelect", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCancel", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 559, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 773, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 761, - "line_end": 761, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 762, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 763, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 764, - "line_end": 764, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 766, - "line_end": 766, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 768, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 769, - "line_end": 769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUIManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 778, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerConnectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 786, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPaletteManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 788, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 796, - "line_end": 815, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAvailableFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 842, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 847, - "line_end": 878, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 887, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logError", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 899, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 905, - "line_end": 918, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 934, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notifyIntentListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 959, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 952, - "line_end": 958, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupNoOpMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 964, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 966, - "line_end": 966, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 967, - "line_end": 967, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 972, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-debug-plugin.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-debug-plugin.js", - "language": "javascript", - "size_bytes": 25334, - "total_lines": 929, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.816374785Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDeactivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTargetSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "traceIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpState", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 440, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureState", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemState", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowCoreStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 619, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runBenchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 664, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 668, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 686, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 687, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceSnapshot", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 729, - "line_end": 760, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getErrorStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRecentErrors", - "symbol_type": "Function", - "file_path": "", - "line_start": 779, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 790, - "line_end": 807, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 812, - "line_end": 823, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 832, - "line_end": 834, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 841, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetAllData", - "symbol_type": "Function", - "file_path": "", - "line_start": 857, - "line_end": 866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 871, - "line_end": 899, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 917, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 922, - "line_end": 926, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowDebugPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-hybrid-communication.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-hybrid-communication.js", - "language": "javascript", - "size_bytes": 12583, - "total_lines": 468, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.822216750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHighSpeedUIChannels", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDataFlowChannels", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFastUIChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDataFlowChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processUIChannelQueue", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "groupUIUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processUIUpdateBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePositionUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSelectionUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAnimationUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMessageMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVoidFlowMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUIUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateFlowId", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateBatchId", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowHybridCommunication", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowHybridCommunication", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-message-adapter.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-message-adapter.js", - "language": "javascript", - "size_bytes": 8560, - "total_lines": 302, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.827019819Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateFlowId", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacket", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDisconnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createExecutionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFlowRecord", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sanitizeForLogging", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAdapterStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanupOldFlows", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacketBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCompatibilityMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowMessageAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-node-plugin.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/charmflow-node-plugin.js", - "language": "javascript", - "size_bytes": 13891, - "total_lines": 485, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.831872649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupNodeTypeDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExecuteRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendResultToConnectedNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDataInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldAutoExecute", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDisconnectionRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePropertyUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleExpand", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onUnload", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowNodePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-line-renderer.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/connection-line-renderer.js", - "language": "javascript", - "size_bytes": 31140, - "total_lines": 937, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.838058887Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateFanOutPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBezierPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateArcPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPathElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPathAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_colorToId", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 547, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePureBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCentroid", - "symbol_type": "Function", - "file_path": "", - "line_start": 625, - "line_end": 635, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 629, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSeparatedPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBundleColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPureBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 731, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPureBundleInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 741, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 776, - "line_end": 780, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleDetailsModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 786, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 876, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 862, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 873, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 899, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 910, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleDetailsFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 920, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 928, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleUnbundleFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 933, - "line_end": 936, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionLineRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug-file-logger.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/debug-file-logger.js", - "language": "javascript", - "size_bytes": 20322, - "total_lines": 674, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.844319616Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeSession", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "outputToConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToBuffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "flushBuffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatLogEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadLogFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveToLocalStorage", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportCategoryLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLogStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startPeriodicFlush", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUnloadHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSessionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateLogFileName", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStackTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportPreviousSessionLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCurrentSessionLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCategoryEnabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveLogSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadLogSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEnabledCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllStoredLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadLogsAsFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadConsoleOutputSetting", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 622, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConsoleOutputStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 629, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 637, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginLogger", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 651, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 647, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 660, - "line_end": 660, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 664, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 668, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 672, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 673, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugFileLogger", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/debug-manager.js", - "language": "javascript", - "size_bytes": 18546, - "total_lines": 702, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.849774128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "traceIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpState", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureState", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemState", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runBenchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getErrorStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRecentErrors", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceSnapshot", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 584, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetAllData", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 630, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 672, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 692, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 699, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowDebugManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 700, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "execute-engine.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/execute-engine.js", - "language": "javascript", - "size_bytes": 12552, - "total_lines": 275, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.854557633Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 7, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCustomPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeDefaultPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeFetchNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJsonParserNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeUiCardNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginListerNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeFlowConnectorNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeConnectedNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ExecuteEngine", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-bridge.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/intent-bridge.js", - "language": "javascript", - "size_bytes": 13136, - "total_lines": 522, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.859020514Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventIntentMapping", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enable", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disable", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEventListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDOMEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldProcessEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isCanvasArea", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isDraggableElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeUIElementClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "translateEventToIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fallbackToOriginalHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logError", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIdFromElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizeMousePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModifierKeys", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementState", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowIntentBridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BridgeUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 455, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/intent-definitions.js", - "language": "javascript", - "size_bytes": 15638, - "total_lines": 462, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.863654353Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateSchema", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkType", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "matchesPattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 303, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main-nyacore.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/main-nyacore.js", - "language": "javascript", - "size_bytes": 82454, - "total_lines": 2064, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.872171140Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeCharmFlowVoidCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNyaCoreUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMessageAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowBootManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeStage3Components", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidCoreDebugPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testPhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidCoreUIFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addVoidCoreMessagePanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addAdapterStatsPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enhanceExecuteButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 568, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeFlowHybrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeFlowVoidCoreOnly", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 619, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPureArchitectureZenMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 636, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "performIntegrationTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeSVGMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 735, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 794, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 746, - "line_end": 793, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 764, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 790, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 836, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 800, - "line_end": 809, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 811, - "line_end": 835, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 833, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidCoreNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDefinition", - "symbol_type": "Function", - "file_path": "", - "line_start": 860, - "line_end": 893, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidCorePluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 940, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidCoreNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 943, - "line_end": 964, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerVoidCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 967, - "line_end": 993, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeVoidCorePluginDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 996, - "line_end": 1052, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1000, - "line_end": 1021, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 1023, - "line_end": 1037, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 1039, - "line_end": 1051, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeOnCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 1055, - "line_end": 1083, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1098, - "line_end": 1157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1135, - "line_end": 1154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1160, - "line_end": 1187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeNodeDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 1190, - "line_end": 1260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1194, - "line_end": 1214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 1216, - "line_end": 1244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 1246, - "line_end": 1259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1263, - "line_end": 1281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1265, - "line_end": 1267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertiesPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 1284, - "line_end": 1300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1303, - "line_end": 1333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidCorePluginInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 1455, - "line_end": 1470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1497, - "line_end": 1497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 1524, - "line_end": 1562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowCoreArchitecture", - "symbol_type": "Function", - "file_path": "", - "line_start": 1567, - "line_end": 1599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testCharmFlowCoreBasicOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1604, - "line_end": 1626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectNyaCoreUIWithCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1631, - "line_end": 1683, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testVoidCoreUIIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1688, - "line_end": 1721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUIComponentsPanelInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 1726, - "line_end": 1756, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1738, - "line_end": 1741, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1746, - "line_end": 1753, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUIComponentsPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 1761, - "line_end": 1908, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1815, - "line_end": 1895, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1827, - "line_end": 1892, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1878, - "line_end": 1884, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1898, - "line_end": 1901, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalConnectionContextHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 1914, - "line_end": 2057, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1916, - "line_end": 2026, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1956, - "line_end": 1956, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2029, - "line_end": 2053, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "monaco-plugin-editor.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/monaco-plugin-editor.js", - "language": "javascript", - "size_bytes": 14664, - "total_lines": 517, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.879161225Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeViaCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMonacoLoading", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openPluginEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplateCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateDefaultTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showEditorModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "savePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeExecuteCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 440, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoPluginEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore-connection-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/nyacore-connection-manager.js", - "language": "javascript", - "size_bytes": 51719, - "total_lines": 1466, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.887119907Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeConnectionUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeDataFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsForPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 579, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 637, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 680, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutgoingConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIncomingConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 737, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePluginConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 757, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 802, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 831, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 836, - "line_end": 882, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 881, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 875, - "line_end": 879, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 900, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 889, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 892, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 905, - "line_end": 948, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 917, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 920, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 947, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 956, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 986, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 970, - "line_end": 970, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 974, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 983, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStoredDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 996, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setStoredDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 998, - "line_end": 1003, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1014, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1021, - "line_end": 1029, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1031, - "line_end": 1033, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 1035, - "line_end": 1099, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1056, - "line_end": 1058, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1063, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 1101, - "line_end": 1116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1118, - "line_end": 1124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1126, - "line_end": 1147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1146, - "line_end": 1146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 1149, - "line_end": 1166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1189, - "line_end": 1272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1218, - "line_end": 1231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1247, - "line_end": 1263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1248, - "line_end": 1252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1254, - "line_end": 1257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1265, - "line_end": 1269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "continueMultipleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1298, - "line_end": 1315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1317, - "line_end": 1371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1334, - "line_end": 1342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1366, - "line_end": 1370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1367, - "line_end": 1369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionStartIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1376, - "line_end": 1389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionCompleteIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1394, - "line_end": 1413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionCancelIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1418, - "line_end": 1429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClickFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1437, - "line_end": 1440, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContextMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1442, - "line_end": 1449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMouseMoveFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1451, - "line_end": 1456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDownFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1458, - "line_end": 1463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "VoidCoreSmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 1020, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/nyacore-ui.js", - "language": "javascript", - "size_bytes": 76570, - "total_lines": 2063, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.896345464Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupProjectManagerUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalMessageBusSubscription", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatsDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProjectManagerUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectButtonStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProjectUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showProjectNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 499, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performUIAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 577, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerUIIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 614, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 603, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeHybridCommunication", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupGlobalConnectionHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 651, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 647, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDirectUIChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 687, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 683, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processUIChannelQueue", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 704, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUpdateKey", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 731, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyUIUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 748, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 753, - "line_end": 784, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 789, - "line_end": 994, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 891, - "line_end": 903, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElementDirect", - "symbol_type": "Function", - "file_path": "", - "line_start": 1000, - "line_end": 1032, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1089, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1062, - "line_end": 1081, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addVisualContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1094, - "line_end": 1124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeUnwantedClasses", - "symbol_type": "Function", - "file_path": "", - "line_start": 1129, - "line_end": 1147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1141, - "line_end": 1143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAdditionalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1152, - "line_end": 1166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodeFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 1171, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 1190, - "line_end": 1225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1204, - "line_end": 1210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1207, - "line_end": 1209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1220, - "line_end": 1222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 1230, - "line_end": 1238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputSubmit", - "symbol_type": "Function", - "file_path": "", - "line_start": 1243, - "line_end": 1255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 1264, - "line_end": 1290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElementData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElementProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 1334, - "line_end": 1375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDataFlowReceived", - "symbol_type": "Function", - "file_path": "", - "line_start": 1380, - "line_end": 1597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1398, - "line_end": 1406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1523, - "line_end": 1528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1532, - "line_end": 1536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1540, - "line_end": 1544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1651, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1657, - "line_end": 1674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1679, - "line_end": 1681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1686, - "line_end": 1688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1693, - "line_end": 1695, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1700, - "line_end": 1730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeUIPluginLegacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1736, - "line_end": 1778, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 1783, - "line_end": 1790, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "togglePluginUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 1795, - "line_end": 1866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1871, - "line_end": 1918, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapsePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1923, - "line_end": 1960, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 1965, - "line_end": 2005, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 2012, - "line_end": 2026, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2033, - "line_end": 2060, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 2061, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-collection.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-collection.js", - "language": "javascript", - "size_bytes": 20032, - "total_lines": 709, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.903609895Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "visualize", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateGradient", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPreview", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDataPoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleJoystick", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateVisualState", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 391, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addKeyframe", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "play", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeEval", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNodePositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderMinimap", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 593, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 631, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTargetIndicator", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-filter-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-filter-ui.js", - "language": "javascript", - "size_bytes": 20685, - "total_lines": 683, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.908772970Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCategoryFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTagCloud", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "bindEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 360, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCategoryFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAttributeFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleTagFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 480, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 583, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTagCloudVisual", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 619, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 607, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 672, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 680, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginFilterUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-flow-executor.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-flow-executor.js", - "language": "javascript", - "size_bytes": 13403, - "total_lines": 433, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.913506312Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDataFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginSafely", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notifyUIUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginElementUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeVoidFlowNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginFlowExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-hot-reloader.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-hot-reloader.js", - "language": "javascript", - "size_bytes": 18340, - "total_lines": 472, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.918265911Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shallowCloneState", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dynamicImportFromCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "transformImportPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "guessPluginCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginHotReloader", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-instance-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-instance-manager.js", - "language": "javascript", - "size_bytes": 18130, - "total_lines": 603, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.923527128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getState", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "capturePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureAllStates", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportSaveData", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importSaveData", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateSaveData", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "newProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 590, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginInstanceManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-plugin.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-palette-plugin.js", - "language": "javascript", - "size_bytes": 57569, - "total_lines": 1762, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.930200036Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupRegistryIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginsFromCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryPluginFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectFolderBasedFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectLegacyFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLegacyCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 647, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 660, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleQuickFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 705, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 758, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 722, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 727, - "line_end": 734, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 732, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 739, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 744, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 749, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 754, - "line_end": 754, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 783, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 764, - "line_end": 782, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 788, - "line_end": 800, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 808, - "line_end": 811, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 874, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 879, - "line_end": 929, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 893, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 904, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 908, - "line_end": 919, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 922, - "line_end": 924, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 926, - "line_end": 928, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleFavorite", - "symbol_type": "Function", - "file_path": "", - "line_start": 934, - "line_end": 946, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 951, - "line_end": 1025, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNyaCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1030, - "line_end": 1233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1065, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1068, - "line_end": 1081, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1084, - "line_end": 1100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeButtonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1103, - "line_end": 1110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCalculatorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1113, - "line_end": 1131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJsonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeHttpPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1155, - "line_end": 1175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGenericPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1178, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1188, - "line_end": 1198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 1201, - "line_end": 1207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1225, - "line_end": 1228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1238, - "line_end": 1254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1262, - "line_end": 1262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 1271, - "line_end": 1294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPriorityIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 1299, - "line_end": 1306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1311, - "line_end": 1314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1319, - "line_end": 1322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1327, - "line_end": 1334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1336, - "line_end": 1342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1344, - "line_end": 1351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1353, - "line_end": 1359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1361, - "line_end": 1368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1370, - "line_end": 1376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 1381, - "line_end": 1707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1712, - "line_end": 1721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1718, - "line_end": 1718, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1726, - "line_end": 1740, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1745, - "line_end": 1756, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 1757, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 1036, - "line_end": 1208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-registry.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-registry.js", - "language": "javascript", - "size_bytes": 16599, - "total_lines": 472, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.937230368Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDefaultPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginManifest", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateDefaultUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugRegisteredPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-wrapper.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/plugin-wrapper.js", - "language": "javascript", - "size_bytes": 22743, - "total_lines": 634, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.942624509Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeDOMReadyCallbacks", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onHotReload", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContext", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeStringify", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "awaken", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLifecycleState", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginWrapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-core.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/project-core.js", - "language": "javascript", - "size_bytes": 53410, - "total_lines": 1570, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.949752416Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeProjectCoreIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extendPluginManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 301, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginByNyaCoreId", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllProjectPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 360, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnectionsForPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseConnectionIdToData", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "capturePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 734, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureAllProjectStates", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 834, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 873, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyCurrentProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 903, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "capturePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 955, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 1139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 976, - "line_end": 980, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1079, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1082, - "line_end": 1089, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1144, - "line_end": 1249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateProjectData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1254, - "line_end": 1324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1329, - "line_end": 1363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1368, - "line_end": 1392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 1397, - "line_end": 1455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1398, - "line_end": 1454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1406, - "line_end": 1441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1417, - "line_end": 1428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1443, - "line_end": 1446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 1460, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1519, - "line_end": 1527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1530, - "line_end": 1532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 1535, - "line_end": 1537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1540, - "line_end": 1542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1545, - "line_end": 1552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1555, - "line_end": 1557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1560, - "line_end": 1562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1565, - "line_end": 1567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 1568, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/canvas-manager.js", - "language": "javascript", - "size_bytes": 4529, - "total_lines": 160, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.958003862Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "appendChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/connection-manager.js", - "language": "javascript", - "size_bytes": 5559, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.962104263Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "completeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/context-menu-manager.js", - "language": "javascript", - "size_bytes": 61414, - "total_lines": 1786, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.968622861Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMenuItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createSeparator", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateCodeFromPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 664, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginRegistryReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMonacoEditorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 705, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeTypeFromPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 762, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "guessNodeTypeFromPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 798, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deletePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 803, - "line_end": 816, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "copyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 821, - "line_end": 825, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "duplicatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 973, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 1077, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1082, - "line_end": 1140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1145, - "line_end": 1181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1167, - "line_end": 1167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1171, - "line_end": 1171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleConnectionList", - "symbol_type": "Function", - "file_path": "", - "line_start": 1186, - "line_end": 1471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1237, - "line_end": 1297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1270, - "line_end": 1279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1334, - "line_end": 1334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1335, - "line_end": 1335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1336, - "line_end": 1338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1353, - "line_end": 1353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1354, - "line_end": 1354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1355, - "line_end": 1357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1356, - "line_end": 1356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1383, - "line_end": 1383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1384, - "line_end": 1384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1385, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1393, - "line_end": 1395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1397, - "line_end": 1397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1397, - "line_end": 1397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1407, - "line_end": 1419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1420, - "line_end": 1423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1449, - "line_end": 1449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1450, - "line_end": 1450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1451, - "line_end": 1451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1464, - "line_end": 1469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseConnectionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 1476, - "line_end": 1507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteSelectedConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1512, - "line_end": 1614, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1521, - "line_end": 1605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1561, - "line_end": 1561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1619, - "line_end": 1624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteBundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1629, - "line_end": 1654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1637, - "line_end": 1648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1649, - "line_end": 1652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCustomConfirmDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1659, - "line_end": 1767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1720, - "line_end": 1720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1721, - "line_end": 1721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1722, - "line_end": 1725, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1741, - "line_end": 1741, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1742, - "line_end": 1742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1743, - "line_end": 1746, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1759, - "line_end": 1765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pastePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1772, - "line_end": 1776, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 1781, - "line_end": 1785, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 1786, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "drag-drop-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/drag-drop-manager.js", - "language": "javascript", - "size_bytes": 17493, - "total_lines": 524, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.975226863Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementInteractive", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUnifiedMouseDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExpandedMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollapsedMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInputElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDragMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupClickDetection", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearTimers", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDoubleClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSelectionClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendPropertyInspectorIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendNonUIDoubleClickIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_endDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "throttledRedraw", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDragState", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllDrags", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementDragging", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendDragStartIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendDragMoveIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendDragEndIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DragDropManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "element-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/element-manager.js", - "language": "javascript", - "size_bytes": 6157, - "total_lines": 252, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.979436711Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ElementManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "selection-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-components/selection-manager.js", - "language": "javascript", - "size_bytes": 3710, - "total_lines": 151, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.983249120Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllSelections", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectMultipleElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElementsInRange", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SelectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "button-send-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-nodes/button-send-ui.js", - "language": "javascript", - "size_bytes": 1726, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.987928466Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getAdditionalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodeFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ButtonSendUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input-text-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-nodes/input-text-ui.js", - "language": "javascript", - "size_bytes": 1657, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.991201651Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getAdditionalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodeFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "InputTextUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 3, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "output-console-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-nodes/output-console-ui.js", - "language": "javascript", - "size_bytes": 635, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.994341872Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getAdditionalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "OutputConsoleUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 3, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string-uppercase-ui.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v1_legacy/js/ui-nodes/string-uppercase-ui.js", - "language": "javascript", - "size_bytes": 253, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:40.997387880Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getAdditionalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 6, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "StringUppercaseUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 3, - "line_end": 7, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CharmFlowMain.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/CharmFlowMain.js", - "language": "javascript", - "size_bytes": 10489, - "total_lines": 378, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.009432951Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCoreReferences", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "finalizeInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProgress", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStatsUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginRegistered", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginInstanceCreated", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCreated", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemError", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowMain", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "PluginPalette.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/components/PluginPalette.js", - "language": "javascript", - "size_bytes": 12040, - "total_lines": 420, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.014996468Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginData", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createHeader", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createSearchAndFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateFallbackPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalette", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "PropertyPanel.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/components/PropertyPanel.js", - "language": "javascript", - "size_bytes": 11079, - "total_lines": 374, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.019082518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createHeader", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFooter", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showWelcomeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSelectionCleared", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayPluginProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayConnectionProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateHeader", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PropertyPanel", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-line-renderer.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/legacy/connection/connection-line-renderer.js", - "language": "javascript", - "size_bytes": 31150, - "total_lines": 937, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.026764684Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateFanOutPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBezierPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateArcPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPathElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPathAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_colorToId", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 547, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePureBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCentroid", - "symbol_type": "Function", - "file_path": "", - "line_start": 625, - "line_end": 635, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 629, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSeparatedPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBundleColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPureBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 731, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPureBundleInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 741, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 776, - "line_end": 780, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleDetailsModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 786, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 876, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 862, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 873, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 899, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 910, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleDetailsFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 920, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 928, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleUnbundleFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 933, - "line_end": 936, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionLineRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore-connection-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/legacy/connection/nyacore-connection-manager.js", - "language": "javascript", - "size_bytes": 51724, - "total_lines": 1466, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.034525931Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeConnectionUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeDataFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsForPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 579, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 637, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 680, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutgoingConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIncomingConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 737, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePluginConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 757, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 802, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 831, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 836, - "line_end": 882, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 881, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 875, - "line_end": 879, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 900, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 889, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 892, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 905, - "line_end": 948, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 917, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 920, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 947, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 956, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 986, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 970, - "line_end": 970, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 974, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 983, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStoredDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 996, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setStoredDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 998, - "line_end": 1003, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1014, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1021, - "line_end": 1029, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1031, - "line_end": 1033, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 1035, - "line_end": 1099, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1056, - "line_end": 1058, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1063, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 1101, - "line_end": 1116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1118, - "line_end": 1124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1126, - "line_end": 1147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1146, - "line_end": 1146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 1149, - "line_end": 1166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1189, - "line_end": 1272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1218, - "line_end": 1231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1247, - "line_end": 1263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1248, - "line_end": 1252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1254, - "line_end": 1257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1265, - "line_end": 1269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "continueMultipleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1298, - "line_end": 1315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1317, - "line_end": 1371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1334, - "line_end": 1342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1366, - "line_end": 1370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1367, - "line_end": 1369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionStartIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1376, - "line_end": 1389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionCompleteIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1394, - "line_end": 1413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendConnectionCancelIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 1418, - "line_end": 1429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClickFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1437, - "line_end": 1440, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContextMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1442, - "line_end": 1449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMouseMoveFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1451, - "line_end": 1456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDownFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1458, - "line_end": 1463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "VoidCoreSmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 1020, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-manager.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/legacy/ui-components/connection-manager.js", - "language": "javascript", - "size_bytes": 5559, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.041426765Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "completeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "PluginRegistryCore.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/PluginRegistryCore.js", - "language": "javascript", - "size_bytes": 21227, - "total_lines": 641, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.046875904Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setProjectCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCategoryManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerKnownPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeKnownFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateClassName", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRegisterRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLoadRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleListRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCategoryListRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginManifest", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 602, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCategoryListRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 612, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginRegistryCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 641, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ProjectCore.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/ProjectCore.js", - "language": "javascript", - "size_bytes": 17295, - "total_lines": 612, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.055773756Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginRegistry", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInstances", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInstanceCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreateInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRemoveInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleListInstances", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRemoveConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleListConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSaveProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLoadProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 611, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 612, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UICore.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/UICore.js", - "language": "javascript", - "size_bytes": 32104, - "total_lines": 1043, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.061475244Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setProjectCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDOMElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIComponents", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPluginPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addVisualContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupBasicInteraction", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPropertyPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "integrateExistingFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 619, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 650, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 722, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 673, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 695, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementSelectable", - "symbol_type": "Function", - "file_path": "", - "line_start": 727, - "line_end": 757, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 728, - "line_end": 756, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllSelections", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 772, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 781, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementCenter", - "symbol_type": "Function", - "file_path": "", - "line_start": 827, - "line_end": 835, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 840, - "line_end": 848, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCanvasClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 860, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCanvasRightClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleWindowResize", - "symbol_type": "Function", - "file_path": "", - "line_start": 868, - "line_end": 871, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCanvasDragOver", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 876, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCanvasDrop", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 907, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginInstanceCreated", - "symbol_type": "Function", - "file_path": "", - "line_start": 913, - "line_end": 924, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginInstanceRemoved", - "symbol_type": "Function", - "file_path": "", - "line_start": 926, - "line_end": 936, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginInstanceUpdated", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 947, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCreated", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionRemoved", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 961, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginRender", - "symbol_type": "Function", - "file_path": "", - "line_start": 963, - "line_end": 966, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionRender", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDragStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 973, - "line_end": 976, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDragMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 980, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDragEnd", - "symbol_type": "Function", - "file_path": "", - "line_start": 982, - "line_end": 985, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRedrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 987, - "line_end": 990, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 995, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1004, - "line_end": 1006, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 1012, - "line_end": 1042, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UICore", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 1043, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug-file-logger.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/js/utils/debug-file-logger.js", - "language": "javascript", - "size_bytes": 21162, - "total_lines": 708, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.068624255Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "safeStringify", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeSession", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "outputToConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToBuffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "flushBuffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatLogEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadLogFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveToLocalStorage", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportCategoryLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLogStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startPeriodicFlush", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUnloadHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSessionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateLogFileName", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStackTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportPreviousSessionLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCurrentSessionLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCategoryEnabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveLogSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadLogSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEnabledCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 574, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllStoredLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadLogsAsFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadConsoleOutputSetting", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConsoleOutputStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 663, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 671, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginLogger", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 679, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 680, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 683, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 693, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 695, - "line_end": 695, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 698, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 699, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 706, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 708, - "line_end": 708, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugFileLogger", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 686, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/data/html-parser/main.js", - "language": "javascript", - "size_bytes": 19712, - "total_lines": 603, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.079507360Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHttpResponseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleQueryIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "querySelector", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json-formatter.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/data/json-formatter/json-formatter.js", - "language": "javascript", - "size_bytes": 12256, - "total_lines": 349, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.085710529Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/data/output-console/main.js", - "language": "javascript", - "size_bytes": 9431, - "total_lines": 317, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.091429264Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectDataType", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getColorForType", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/data/string-uppercase/main.js", - "language": "javascript", - "size_bytes": 5116, - "total_lines": 166, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.097344590Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/debug-console/main.js", - "language": "javascript", - "size_bytes": 17144, - "total_lines": 538, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.104405518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTabCompletion", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJavaScript", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSpecialCommands", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutputColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "navigateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCompletionSuggestions", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/message-log-panel/main.js", - "language": "javascript", - "size_bytes": 16886, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.110807925Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeLogMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startLogCapture", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addLogEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFilteredEntries", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelBorderColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/monaco-editor/intent-definitions.js", - "language": "javascript", - "size_bytes": 5808, - "total_lines": 267, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.117041491Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateMonacoIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoIntentSender", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/monaco-editor/main.js", - "language": "javascript", - "size_bytes": 34431, - "total_lines": 919, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.121930860Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadMonacoCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFallbackEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupSaveButtonListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEditorModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupModalEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 670, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 586, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 657, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 746, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 750, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeModalEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupModalDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 860, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 843, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 845, - "line_end": 853, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 883, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 888, - "line_end": 894, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 912, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/node-tree-view/main.js", - "language": "javascript", - "size_bytes": 19972, - "total_lines": 621, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.129313739Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeTreeView", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementAttributes", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTreeStructure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeType", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTreeDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderTreeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleExpand", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandMatchingNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandNodesRecursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanTreeForExport", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 577, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 614, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/developer-tools/property-inspector/main.js", - "language": "javascript", - "size_bytes": 19884, - "total_lines": 550, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.135969095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeInspector", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupElementSelectionListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElementProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateInspectorUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInputType", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createInputElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizeColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateSelectedInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyPropertyToElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetToDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "undoChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 512, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redoChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/media/canvas-drawing/main.js", - "language": "javascript", - "size_bytes": 13291, - "total_lines": 450, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.146290778Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAnimationStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAnimationStop", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExpandedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollapsedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasDrawingPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/media/chart-visualization/main.js", - "language": "javascript", - "size_bytes": 18131, - "total_lines": 506, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.152478122Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateChartConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSVGChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http-request.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/network/http-request/http-request.js", - "language": "javascript", - "size_bytes": 20393, - "total_lines": 561, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.160265584Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRequestIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePostIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendToFormatterClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/button-send/main.js", - "language": "javascript", - "size_bytes": 7566, - "total_lines": 278, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.168899036Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePropertyUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExpandedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollapsedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ButtonSendPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/html-display/main.js", - "language": "javascript", - "size_bytes": 19006, - "total_lines": 539, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.174795480Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFromURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateResultsHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeSandbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateAutoRefresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 490, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/input-text/main.js", - "language": "javascript", - "size_bytes": 8883, - "total_lines": 308, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.180938817Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTextInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/text-note/main.js", - "language": "javascript", - "size_bytes": 6951, - "total_lines": 241, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.186393814Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIToggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-editor.plugin.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/_archive_text-editor.plugin.js", - "language": "javascript", - "size_bytes": 6663, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.190909428Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLanguageChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-note.plugin.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/ui/_archive_text-note.plugin.js", - "language": "javascript", - "size_bytes": 3400, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.194816460Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/plugins/categories/workflow/interval-inject/main.js", - "language": "javascript", - "size_bytes": 19431, - "total_lines": 582, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.201748712Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "createState", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigureIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeInjection", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTriggeredAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntervalInMilliseconds", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHistoryHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 551, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-basic.js", - "path": "./development/nyaflow/archive/legacy-charmflow-versions/charmflow_v2_legacy/test/unit/test-basic.js", - "language": "javascript", - "size_bytes": 11218, - "total_lines": 342, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.211774142Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 301, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-voidcore-simple.js", - "path": "./development/nyaflow/archive/legacy-tests/test-voidcore-simple.js", - "language": "javascript", - "size_bytes": 5318, - "total_lines": 171, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.249668775Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runTests", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "save-plugin.py", - "path": "./development/nyaflow/archive/save-plugin.py", - "language": "python", - "size_bytes": 3703, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.268343345Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_do_OPTIONS", - "name": "do_OPTIONS", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 20, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_do_POST", - "name": "do_POST", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 86, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_log_message", - "name": "log_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "format", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_FileSaveHandler", - "name": "FileSaveHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 90, - "column_start": 0, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "do_OPTIONS", - "do_POST", - "log_message" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "http.server HTTPServer, BaseHTTPRequestHandler", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "urllib.parse parse_qs, urlparse", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "office-main.js", - "path": "./development/nyaflow/challenge/js/office-main.js", - "language": "javascript", - "size_bytes": 12962, - "total_lines": 346, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.279531836Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupLogging", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDemoSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishWelcomeNotices", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "demonstrateSystemCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerProjectPhoenixDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerDemoSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "trackUserInteraction", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayWelcomeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCoreOfficeOrchestrator", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bulletin-board.js", - "path": "./development/nyaflow/challenge/js/office-plugins/bulletin-board.js", - "language": "javascript", - "size_bytes": 12776, - "total_lines": 380, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.284771835Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDefaultBulletins", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBulletinUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addFilterListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateBulletinDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayBulletins", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectQuery", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTeamStatusCheck", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleOnboardingAssistance", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNotice", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addBulletin", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightNewBulletin", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addSystemNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNotificationStream", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processNotificationQueue", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "BulletinBoardPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "chat-notifier.js", - "path": "./development/nyaflow/challenge/js/office-plugins/chat-notifier.js", - "language": "javascript", - "size_bytes": 20557, - "total_lines": 640, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.289587642Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeChatData", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createChatNotifierUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addChatEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyChatFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNotificationFeed", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayChannels", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChatStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectChatAssistance", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTeamChatRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleOnboardingChatSupport", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMeetingChatPrep", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNotice", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "suggestRelatedChatActions", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "suggestDocumentDiscussion", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addSmartSuggestion", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateSmartSuggestions", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleJoinPhoenixChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDMToMentor", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAskForHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSuggestionAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 593, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleChannelClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 603, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 597, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processSmartSuggestions", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChannelActivity", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 631, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 639, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChatNotifierPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "doc-feed.js", - "path": "./development/nyaflow/challenge/js/office-plugins/doc-feed.js", - "language": "javascript", - "size_bytes": 20404, - "total_lines": 570, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.294820676Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "globalMessageHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDocuments", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDocFeedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addFilterListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDocumentFeed", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "displayDocuments", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFeaturedDocs", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDocumentActionListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectDocumentQuery", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUrgentDocumentSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMeetingPreparation", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleOnboardingDocuments", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightDocument", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 480, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDocumentView", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 499, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDocumentDownload", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addActivity", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateActivityFeed", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processDocumentRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DocFeedPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-launcher.js", - "path": "./development/nyaflow/challenge/js/office-plugins/intent-launcher.js", - "language": "javascript", - "size_bytes": 13766, - "total_lines": 381, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.299679186Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLauncherUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createActionButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "launchIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showLaunchFeedback", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createHistorySection", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateHistoryDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNotice", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateActionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDemoMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentLauncherPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system-observer.js", - "path": "./development/nyaflow/challenge/js/office-plugins/system-observer.js", - "language": "javascript", - "size_bytes": 11369, - "total_lines": 341, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.304284651Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startRenderLoop", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginNetwork", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMessageLogOverlay", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "visualizeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToMessageLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMessageParticle", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTargetPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderVisualization", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawPluginNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateParticles", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawNetworkStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SystemObserverPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/challenge/src/core-communication.js", - "language": "javascript", - "size_bytes": 9650, - "total_lines": 353, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.310657135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/challenge/src/core-fusion.js", - "language": "javascript", - "size_bytes": 10643, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.314750266Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.js", - "path": "./development/nyaflow/challenge/src/core.js", - "language": "javascript", - "size_bytes": 4242, - "total_lines": 141, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.318575571Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "provide", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retract", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreBulletinBoard", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/challenge/src/message.js", - "language": "javascript", - "size_bytes": 3276, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.322157166Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 11, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore.js", - "path": "./development/nyaflow/challenge/src/voidcore.js", - "language": "javascript", - "size_bytes": 2747, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.326010844Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 8, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore_base.js", - "path": "./development/nyaflow/challenge/src/voidcore_base.js", - "language": "javascript", - "size_bytes": 3969, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:41.330046332Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-boot-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/charmflow-boot-manager.js", - "language": "javascript", - "size_bytes": 10554, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.027655217Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVoidFlowBootStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkVoidFlowComponentsReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForComponentReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleComponentStatusChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startStatusMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowBootManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-core.js", - "path": "./development/nyaflow/charmflow_v4/js/charmflow-core.js", - "language": "javascript", - "size_bytes": 31827, - "total_lines": 969, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.033017381Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementSelect", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCancel", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 559, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 764, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUIManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 769, - "line_end": 772, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerConnectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 774, - "line_end": 777, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPaletteManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 779, - "line_end": 782, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 787, - "line_end": 806, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAvailableFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 811, - "line_end": 833, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 869, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 874, - "line_end": 882, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logError", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 894, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 913, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 919, - "line_end": 929, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notifyIntentListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 935, - "line_end": 954, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 953, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupNoOpMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 959, - "line_end": 966, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 961, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 962, - "line_end": 962, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 963, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 967, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-debug-plugin.js", - "path": "./development/nyaflow/charmflow_v4/js/charmflow-debug-plugin.js", - "language": "javascript", - "size_bytes": 28844, - "total_lines": 1040, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.039439458Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDeactivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTargetSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "traceIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpState", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureState", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemState", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowCoreStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runBenchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 671, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 675, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 693, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceSnapshot", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 727, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getErrorStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 772, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRecentErrors", - "symbol_type": "Function", - "file_path": "", - "line_start": 786, - "line_end": 788, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 830, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 822, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 841, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 848, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 853, - "line_end": 859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetAllData", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 873, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 912, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 914, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 932, - "line_end": 945, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSessionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 950, - "line_end": 954, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 959, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 973, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 988, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1027, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1032, - "line_end": 1037, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowDebugPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 1038, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-message-adapter.js", - "path": "./development/nyaflow/charmflow_v4/js/charmflow-message-adapter.js", - "language": "javascript", - "size_bytes": 8738, - "total_lines": 306, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.044544942Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateFlowId", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacket", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDisconnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createExecutionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFlowRecord", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sanitizeForLogging", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAdapterStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanupOldFlows", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacketBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCompatibilityMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowMessageAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-node-plugin.js", - "path": "./development/nyaflow/charmflow_v4/js/charmflow-node-plugin.js", - "language": "javascript", - "size_bytes": 13885, - "total_lines": 485, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.048986225Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupNodeTypeDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExecuteRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendResultToConnectedNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDataInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldAutoExecute", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDisconnectionRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePropertyUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleExpand", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onUnload", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowNodePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-line-renderer.js", - "path": "./development/nyaflow/charmflow_v4/js/connection-line-renderer.js", - "language": "javascript", - "size_bytes": 34521, - "total_lines": 1012, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.055254266Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateFanOutPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBezierPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateArcPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPathElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPathAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_colorToId", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 574, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 637, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePureBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 660, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 667, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCentroid", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSeparatedPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 714, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBundleColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 726, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPureBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 792, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPureBundleInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 844, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 802, - "line_end": 813, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 837, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 843, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleDetailsModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 849, - "line_end": 856, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 861, - "line_end": 889, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 894, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 943, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 945, - "line_end": 948, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 974, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 985, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleDetailsFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 995, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1000, - "line_end": 1003, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleUnbundleFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1011, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionLineRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 1012, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug-nyameshos-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/debug-nyameshos-manager.js", - "language": "javascript", - "size_bytes": 12324, - "total_lines": 388, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.060678939Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugNyameshOS", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDebugNyameshOS", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugNyameshOSManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-bridge.js", - "path": "./development/nyaflow/charmflow_v4/js/intent-bridge.js", - "language": "javascript", - "size_bytes": 13293, - "total_lines": 526, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.065713926Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventIntentMapping", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enable", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disable", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEventListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDOMEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldProcessEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isCanvasArea", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isDraggableElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeUIElementClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "translateEventToIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fallbackToOriginalHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logError", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIdFromElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizeMousePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModifierKeys", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementState", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowIntentBridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BridgeUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 459, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/charmflow_v4/js/intent-definitions.js", - "language": "javascript", - "size_bytes": 15638, - "total_lines": 462, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.070320920Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateSchema", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkType", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "matchesPattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 303, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/archive/main.js", - "language": "javascript", - "size_bytes": 66887, - "total_lines": 1703, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.079848461Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeOnCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeNodeDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertiesPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePortClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawTempConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExecutionFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleNodeClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 869, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 935, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 930, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 972, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "ensureMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1018, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1086, - "line_end": 1088, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1097, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1100, - "line_end": 1103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnectionWithBaseCoords", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawBundledConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1191, - "line_end": 1292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1280, - "line_end": 1286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionDeleteDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1301, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDeleteModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1307, - "line_end": 1541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1431, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1432, - "line_end": 1432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1435, - "line_end": 1437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1436, - "line_end": 1436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1457, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1461, - "line_end": 1461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1482, - "line_end": 1484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1487, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1495, - "line_end": 1498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1525, - "line_end": 1527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1534, - "line_end": 1538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1544, - "line_end": 1557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1545, - "line_end": 1548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1551, - "line_end": 1551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1560, - "line_end": 1646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1598, - "line_end": 1601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1621, - "line_end": 1624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1628, - "line_end": 1630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1637, - "line_end": 1642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1643, - "line_end": 1645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1649, - "line_end": 1691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1688, - "line_end": 1690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1701, - "line_end": 1703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 539, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 872, - "line_end": 1692, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/archive/old-versions/main.js", - "language": "javascript", - "size_bytes": 66887, - "total_lines": 1703, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.091297034Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeOnCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeNodeDraggable", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMouseUp", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertiesPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNodePropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePortClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawTempConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExecutionFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleNodeClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 732, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCandidateItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 869, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 866, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConnectionsFromNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 935, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 930, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 938, - "line_end": 972, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "ensureMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 1015, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1018, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1086, - "line_end": 1088, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1090, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1097, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1100, - "line_end": 1103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawSingleConnectionWithBaseCoords", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1177, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawBundledConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1191, - "line_end": 1292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1280, - "line_end": 1286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionDeleteDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1301, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDeleteModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1307, - "line_end": 1541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1431, - "line_end": 1433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1432, - "line_end": 1432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1435, - "line_end": 1437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1436, - "line_end": 1436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1457, - "line_end": 1464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1461, - "line_end": 1461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1482, - "line_end": 1484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1487, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1495, - "line_end": 1498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1525, - "line_end": 1527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1534, - "line_end": 1538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1544, - "line_end": 1557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1545, - "line_end": 1548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1551, - "line_end": 1551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1552, - "line_end": 1554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1560, - "line_end": 1646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1598, - "line_end": 1601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1621, - "line_end": 1624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1628, - "line_end": 1630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1637, - "line_end": 1642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1643, - "line_end": 1645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1649, - "line_end": 1691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1688, - "line_end": 1690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1701, - "line_end": 1703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SmartConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 539, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 872, - "line_end": 1692, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-plugins.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_archive/simple-plugins.js", - "language": "javascript", - "size_bytes": 16705, - "total_lines": 704, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.103973771Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPluginsByTag", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 698, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "chart_display.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/chart_display.js", - "language": "javascript", - "size_bytes": 8765, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.110550875Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createFallbackUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createChartUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMetricsUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateMetricsDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChartDisplayPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "city_pedestrian.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/city_pedestrian.js", - "language": "javascript", - "size_bytes": 6141, - "total_lines": 187, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.114503781Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createPedestrian", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTrafficLightChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVehicleMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startCrossing", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_returnToStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CityPedestrianPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "city_vehicle.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/city_vehicle.js", - "language": "javascript", - "size_bytes": 5150, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.118666829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTrafficLightChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_moveVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyCleared", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CityVehiclePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cogito.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/cogito.js", - "language": "javascript", - "size_bytes": 6705, - "total_lines": 205, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.122554338Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "askExistentialQuestion", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "contemplateExistence", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleProposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateCharacter", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CogitoPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "collision_detector.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/collision_detector.js", - "language": "javascript", - "size_bytes": 4147, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.126353209Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectRegistration", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectUnregistration", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectMoved", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startDetection", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_detectCollisions", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_checkCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CollisionDetectorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "emergency_vehicle.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/emergency_vehicle.js", - "language": "javascript", - "size_bytes": 5905, - "total_lines": 201, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.130039543Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createEmergencyVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startEmergencyEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_triggerEmergency", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSiren", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startEmergencyMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_endEmergency", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "EmergencyVehiclePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "galaxy_viewer.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/galaxy_viewer.js", - "language": "javascript", - "size_bytes": 20590, - "total_lines": 604, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.134803933Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupScene", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onWindowResize", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animate", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBoardChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addTestStars", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createCollisionEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createExplosion", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_splitStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_expireStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_spawnRandomStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createSupernovaEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createStarCounter", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createDemoInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateStarCounter", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_forceRemoveStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GalaxyViewerPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "gui_voidcore_manager.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/gui_voidcore_manager.js", - "language": "javascript", - "size_bytes": 5137, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.139306652Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runSelectedDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GUIVoidCoreManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "logger.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/logger.js", - "language": "javascript", - "size_bytes": 427, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.142763049Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 7, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 11, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LoggerPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "markdownrenderer.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/markdownrenderer.js", - "language": "javascript", - "size_bytes": 2742, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.145928851Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 8, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateMessageReceived", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MarkdownRendererPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "observer.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/observer.js", - "language": "javascript", - "size_bytes": 3909, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.149419164Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCogitoQuestion", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateCharacter", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ObserverPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system_metrics.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/system_metrics.js", - "language": "javascript", - "size_bytes": 3451, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.152877752Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_gatherRealMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SystemMetricsPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "textinput.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/textinput.js", - "language": "javascript", - "size_bytes": 8581, - "total_lines": 260, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.156689939Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleProposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_onTextChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextInputPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "traffic_light.js", - "path": "./development/nyaflow/charmflow_v4/js/legacy/plugins_legacy/traffic_light.js", - "language": "javascript", - "size_bytes": 5861, - "total_lines": 182, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.160554069Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createTrafficLight", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startCycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_changeLight", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyOverride", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyCleared", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TrafficLightPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main-nyacore.js", - "path": "./development/nyaflow/charmflow_v4/js/main-nyacore.js", - "language": "javascript", - "size_bytes": 44322, - "total_lines": 1129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.166901518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initializeCharmFlowVoidCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNyaCoreUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMessageAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowBootManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeStage3Components", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidCoreDebugPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testPhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNyaMeshRightPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginSelectionHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 579, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupLogRedirection", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addAdapterStatsPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 614, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enhanceExecuteButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 646, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 644, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPureArchitectureZenMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "performIntegrationTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeSVGMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 708, - "line_end": 756, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 758, - "line_end": 809, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 761, - "line_end": 808, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 779, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 782, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 812, - "line_end": 851, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 824, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 826, - "line_end": 850, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 848, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidCoreNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 872, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 921, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowCoreArchitecture", - "symbol_type": "Function", - "file_path": "", - "line_start": 926, - "line_end": 959, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testCharmFlowCoreBasicOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 964, - "line_end": 986, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectNyaCoreUIWithCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 1044, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testVoidCoreUIIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1049, - "line_end": 1082, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUIComponentsPanelInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 1087, - "line_end": 1121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1103, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1111, - "line_end": 1118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "monaco-plugin-editor.js", - "path": "./development/nyaflow/charmflow_v4/js/monaco-plugin-editor.js", - "language": "javascript", - "size_bytes": 15417, - "total_lines": 511, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.172687473Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeViaCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMonacoLoading", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openPluginEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplateCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateDefaultTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showEditorModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "savePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeExecuteCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoPluginEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore-ui.js", - "path": "./development/nyaflow/charmflow_v4/js/nyacore-ui.js", - "language": "javascript", - "size_bytes": 60252, - "total_lines": 1819, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.179308123Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapsePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDragOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDragDropIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasRect", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupProjectManagerUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalMessageBusSubscription", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatsDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 597, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProjectManagerUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 731, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 670, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 684, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectButtonStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 748, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProjectUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 753, - "line_end": 788, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showProjectNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 848, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 837, - "line_end": 841, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 851, - "line_end": 863, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 867, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 871, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 873, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 877, - "line_end": 879, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 883, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 887, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 893, - "line_end": 906, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_waitForNyaCoreInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 918, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performUIAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 923, - "line_end": 937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerUIIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 942, - "line_end": 974, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 952, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 954, - "line_end": 957, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 984, - "line_end": 991, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDirectUIChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 996, - "line_end": 1020, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1003, - "line_end": 1016, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1011, - "line_end": 1014, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processUIChannelQueue", - "symbol_type": "Function", - "file_path": "", - "line_start": 1025, - "line_end": 1043, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1032, - "line_end": 1035, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUpdateKey", - "symbol_type": "Function", - "file_path": "", - "line_start": 1048, - "line_end": 1059, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyUIUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1076, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 1081, - "line_end": 1118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElementDirect", - "symbol_type": "Function", - "file_path": "", - "line_start": 1128, - "line_end": 1162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 1168, - "line_end": 1177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1238, - "line_end": 1256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 1276, - "line_end": 1307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1286, - "line_end": 1292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1289, - "line_end": 1291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1302, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 1312, - "line_end": 1320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputSubmit", - "symbol_type": "Function", - "file_path": "", - "line_start": 1325, - "line_end": 1334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 1343, - "line_end": 1369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElementData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1374, - "line_end": 1408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElementProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 1413, - "line_end": 1454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 1466, - "line_end": 1473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 1478, - "line_end": 1531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1536, - "line_end": 1550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1557, - "line_end": 1584, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1593, - "line_end": 1595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasRect", - "symbol_type": "Function", - "file_path": "", - "line_start": 1597, - "line_end": 1600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 1602, - "line_end": 1604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 1606, - "line_end": 1608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1613, - "line_end": 1615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1617, - "line_end": 1621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 1623, - "line_end": 1625, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 1627, - "line_end": 1629, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1634, - "line_end": 1638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1640, - "line_end": 1642, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1644, - "line_end": 1648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1653, - "line_end": 1657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 1659, - "line_end": 1661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 1663, - "line_end": 1665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1670, - "line_end": 1677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 1680, - "line_end": 1682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "completeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1684, - "line_end": 1688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 1690, - "line_end": 1694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1696, - "line_end": 1701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1703, - "line_end": 1708, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1710, - "line_end": 1712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1714, - "line_end": 1725, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1730, - "line_end": 1734, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1736, - "line_end": 1740, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1742, - "line_end": 1746, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 1748, - "line_end": 1752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDragDropIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1757, - "line_end": 1763, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1768, - "line_end": 1770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1772, - "line_end": 1774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1779, - "line_end": 1787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1789, - "line_end": 1793, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1795, - "line_end": 1797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 1799, - "line_end": 1801, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 1803, - "line_end": 1805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1810, - "line_end": 1812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementType", - "symbol_type": "Function", - "file_path": "", - "line_start": 1814, - "line_end": 1816, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 1817, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-migration-tool.js", - "path": "./development/nyaflow/charmflow_v4/js/nyamesh-migration-tool.js", - "language": "javascript", - "size_bytes": 14100, - "total_lines": 503, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.185754242Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "migrateAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findPluginFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertPluginFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyaCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertToNyaMesh", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBackup", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeChanges", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateReport", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertSinglePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseArgs", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshMigrationTool", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "MigrationCLI", - "symbol_type": "Class", - "file_path": "", - "line_start": 431, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-plugin-base.js", - "path": "./development/nyaflow/charmflow_v4/js/nyamesh-plugin-base.js", - "language": "javascript", - "size_bytes": 7861, - "total_lines": 298, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.190298768Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDOMElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDOMElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveData", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadData", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePluginConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PluginUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 263, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-right-panel.js", - "path": "./development/nyaflow/charmflow_v4/js/nyamesh-right-panel.js", - "language": "javascript", - "size_bytes": 16734, - "total_lines": 566, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.194456264Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "render", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadNyaMeshLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onPluginSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 510, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mount", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 553, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 549, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 564, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshComponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "NyaMeshRightPanel", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh2-bridge.js", - "path": "./development/nyaflow/charmflow_v4/js/nyamesh2-bridge.js", - "language": "javascript", - "size_bytes": 15740, - "total_lines": 550, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.199793519Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityRegister", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityUnregister", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreDetach", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_queryNeighborCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_emitCharmFlowEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generatePluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateConnectionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateResponseId", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBridgeStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNyaMesh2Bridge", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMesh2Bridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-collection.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-collection.js", - "language": "javascript", - "size_bytes": 20298, - "total_lines": 713, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.204849990Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "visualize", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateGradient", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPreview", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDataPoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleJoystick", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateVisualState", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addKeyframe", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "play", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeEval", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNodePositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderMinimap", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 644, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTargetIndicator", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-filter-ui.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-filter-ui.js", - "language": "javascript", - "size_bytes": 20981, - "total_lines": 691, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.209994352Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCategoryFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTagCloud", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "bindEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCategoryFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAttributeFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleTagFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 580, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTagCloudVisual", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 622, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 684, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginFilterUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-hot-reloader.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-hot-reloader.js", - "language": "javascript", - "size_bytes": 18515, - "total_lines": 476, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.215106233Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shallowCloneState", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dynamicImportFromCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "transformImportPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "guessPluginCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginHotReloader", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette/index.js", - "language": "javascript", - "size_bytes": 539, - "total_lines": 12, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.219926561Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-data-provider.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette/plugin-data-provider.js", - "language": "javascript", - "size_bytes": 7965, - "total_lines": 273, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.223469627Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginRegistry", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForRegistryInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizePluginData", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupRegistryIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginDataProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-plugin.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette/plugin-palette-plugin.js", - "language": "javascript", - "size_bytes": 9719, - "total_lines": 326, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.227577772Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-renderer.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette/plugin-palette-renderer.js", - "language": "javascript", - "size_bytes": 17959, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.231798041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cacheElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilterButtons", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCategoryTabs", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSearchValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPriorityIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPaletteRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-state.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette/plugin-palette-state.js", - "language": "javascript", - "size_bytes": 7806, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.235745490Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSearchText", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSortBy", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleQuickFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isFilterActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleFavorite", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "incrementUsageCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCurrentState", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPaletteState", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-plugin.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-palette-plugin.js", - "language": "javascript", - "size_bytes": 59044, - "total_lines": 1795, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.242793459Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupRegistryIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginsFromCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryPluginFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectFolderBasedFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectLegacyFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLegacyCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 512, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 634, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 663, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleQuickFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 710, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 715, - "line_end": 729, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 738, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 748, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 760, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 779, - "line_end": 799, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 798, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 816, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 821, - "line_end": 828, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 890, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 882, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 909, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 920, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 941, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 944, - "line_end": 946, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 950, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleFavorite", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 973, - "line_end": 1052, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNyaCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1057, - "line_end": 1262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1111, - "line_end": 1127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeButtonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCalculatorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJsonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1161, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeHttpPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGenericPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1205, - "line_end": 1212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1215, - "line_end": 1225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 1228, - "line_end": 1234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1252, - "line_end": 1257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1267, - "line_end": 1283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1288, - "line_end": 1295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1291, - "line_end": 1291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 1300, - "line_end": 1323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPriorityIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 1328, - "line_end": 1335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1340, - "line_end": 1343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1348, - "line_end": 1351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1356, - "line_end": 1363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1365, - "line_end": 1371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1373, - "line_end": 1380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1382, - "line_end": 1388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1390, - "line_end": 1397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1399, - "line_end": 1405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 1410, - "line_end": 1736, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1741, - "line_end": 1750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1747, - "line_end": 1747, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1755, - "line_end": 1769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1774, - "line_end": 1785, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 1786, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 1063, - "line_end": 1235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-registry.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-registry.js", - "language": "javascript", - "size_bytes": 31513, - "total_lines": 809, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.250205596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleError", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDefaultPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "discoverCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 574, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 603, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyacoreV14Compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyacoreV15Compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 728, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginManifest", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 759, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 790, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugRegisteredPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 796, - "line_end": 802, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 803, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-wrapper.js", - "path": "./development/nyaflow/charmflow_v4/js/plugin-wrapper.js", - "language": "javascript", - "size_bytes": 47528, - "total_lines": 1200, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.257065045Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onHotReload", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContext", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 610, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 639, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 684, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 712, - "line_end": 723, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 726, - "line_end": 731, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 741, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 815, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 764, - "line_end": 807, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeStringify", - "symbol_type": "Function", - "file_path": "", - "line_start": 823, - "line_end": 838, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 826, - "line_end": 834, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupInitialUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "awaken", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 1061, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 946, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 976, - "line_end": 1011, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 1066, - "line_end": 1087, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 1092, - "line_end": 1118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 1123, - "line_end": 1128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getState", - "symbol_type": "Function", - "file_path": "", - "line_start": 1133, - "line_end": 1141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1146, - "line_end": 1170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginWrapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 1172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-core.js", - "path": "./development/nyaflow/charmflow_v4/js/project-core.js", - "language": "javascript", - "size_bytes": 66216, - "total_lines": 1955, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.266019645Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeProjectCoreIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extendPluginManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 612, - "line_end": 615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginByNyaCoreId", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 635, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllProjectPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 647, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 655, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 809, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnectionsForPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 901, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 960, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "capturePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 1062, - "line_end": 1127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureAllProjectStates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1132, - "line_end": 1144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1153, - "line_end": 1207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1236, - "line_end": 1266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyCurrentProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1271, - "line_end": 1296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1402, - "line_end": 1409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1425, - "line_end": 1429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1448, - "line_end": 1510, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1612, - "line_end": 1679, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateProjectData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1684, - "line_end": 1754, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1759, - "line_end": 1801, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1806, - "line_end": 1830, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 1835, - "line_end": 1893, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1836, - "line_end": 1892, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1844, - "line_end": 1879, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1855, - "line_end": 1866, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1868, - "line_end": 1871, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1881, - "line_end": 1884, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 1898, - "line_end": 1946, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 1948, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8450, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.274345646Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/core-communication.js", - "language": "javascript", - "size_bytes": 11289, - "total_lines": 401, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.278582709Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/core-fusion.js", - "language": "javascript", - "size_bytes": 10485, - "total_lines": 342, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.283260536Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/nyacore.js", - "language": "javascript", - "size_bytes": 24996, - "total_lines": 856, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.288063267Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 846, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3938, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.292753370Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24680, - "total_lines": 753, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.297657607Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-plugin-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/unified-plugin-manager.js", - "language": "javascript", - "size_bytes": 14168, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.302757139Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreatePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyPluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/src/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18226, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.307666401Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interface.js", - "path": "./development/nyaflow/charmflow_v4/js/src/interfaces/plugin-interface.js", - "language": "javascript", - "size_bytes": 4682, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.313319157Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/charmflow_v4/js/src/messaging/message.js", - "language": "javascript", - "size_bytes": 5309, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.318411303Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v4/js/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5448, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.322005174Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v4/js/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 10494, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.325973095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-store.js", - "path": "./development/nyaflow/charmflow_v4/js/src/plugins/plugin-store.js", - "language": "javascript", - "size_bytes": 2942, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.331140415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/canvas-manager.js", - "language": "javascript", - "size_bytes": 10955, - "total_lines": 301, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.336851447Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUnifiedContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "appendChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 301, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/context-menu-manager.js", - "language": "javascript", - "size_bytes": 67485, - "total_lines": 1959, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.344038345Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMenuItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createSeparator", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateCodeFromPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 628, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 705, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginRegistryReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMonacoEditorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 746, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeTypeFromPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 751, - "line_end": 803, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "guessNodeTypeFromPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 808, - "line_end": 830, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 835, - "line_end": 839, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deletePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "copyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 903, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 894, - "line_end": 896, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "duplicatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 908, - "line_end": 1057, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1062, - "line_end": 1161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1166, - "line_end": 1188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelatedConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1193, - "line_end": 1206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1201, - "line_end": 1205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1211, - "line_end": 1227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1218, - "line_end": 1223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseConnectionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 1232, - "line_end": 1263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1268, - "line_end": 1304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1290, - "line_end": 1290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1294, - "line_end": 1294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1300, - "line_end": 1300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleConnectionList", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1584, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1360, - "line_end": 1410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1447, - "line_end": 1447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1448, - "line_end": 1448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1449, - "line_end": 1451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1450, - "line_end": 1450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1466, - "line_end": 1466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1467, - "line_end": 1467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1468, - "line_end": 1470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1469, - "line_end": 1469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1496, - "line_end": 1496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1497, - "line_end": 1497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1498, - "line_end": 1546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1506, - "line_end": 1508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1510, - "line_end": 1510, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1510, - "line_end": 1510, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1520, - "line_end": 1532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1533, - "line_end": 1536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1562, - "line_end": 1562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1563, - "line_end": 1563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1564, - "line_end": 1564, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1577, - "line_end": 1582, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseConnectionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 1589, - "line_end": 1620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteSelectedConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1625, - "line_end": 1727, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1634, - "line_end": 1718, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1665, - "line_end": 1703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1674, - "line_end": 1674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1732, - "line_end": 1737, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteBundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1742, - "line_end": 1767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1750, - "line_end": 1761, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1762, - "line_end": 1765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCustomConfirmDialog", - "symbol_type": "Function", - "file_path": "", - "line_start": 1772, - "line_end": 1880, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1833, - "line_end": 1833, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1834, - "line_end": 1834, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1835, - "line_end": 1838, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1854, - "line_end": 1854, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1855, - "line_end": 1855, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1856, - "line_end": 1859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1872, - "line_end": 1878, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pastePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1885, - "line_end": 1937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 1942, - "line_end": 1946, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 1951, - "line_end": 1958, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 1959, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "element-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/element-manager.js", - "language": "javascript", - "size_bytes": 12071, - "total_lines": 417, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.350979753Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "togglePluginUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVisualContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeUnwantedClasses", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 391, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ElementManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "placement-drag-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/placement-drag-manager.js", - "language": "javascript", - "size_bytes": 12133, - "total_lines": 379, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.355226288Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enablePaletteDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disablePaletteDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlacementState", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PlacementDragManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interaction-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/plugin-interaction-manager.js", - "language": "javascript", - "size_bytes": 24907, - "total_lines": 708, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.360239603Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementInteractive", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInteractionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementInteracting", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginInteractionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "selection-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/ui-components/selection-manager.js", - "language": "javascript", - "size_bytes": 3712, - "total_lines": 151, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.364698155Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllSelections", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectMultipleElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElementsInRange", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SelectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-connection-manager.js", - "path": "./development/nyaflow/charmflow_v4/js/unified-connection-manager.js", - "language": "javascript", - "size_bytes": 40867, - "total_lines": 1191, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.370908238Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLegacyManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableFeature", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "switchToUnified", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupMouseHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 583, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanupMouseHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 634, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 655, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnectionWithRenderer", - "symbol_type": "Function", - "file_path": "", - "line_start": 660, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnectionSimple", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 743, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createSVGLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 779, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 789, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 790, - "line_end": 790, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 791, - "line_end": 791, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 792, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 793, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 807, - "line_end": 807, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 809, - "line_end": 809, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 826, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 860, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performConnectionRedraw", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 889, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getCompatibleConnectionTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 925, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 924, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 930, - "line_end": 947, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 952, - "line_end": 971, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 966, - "line_end": 970, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 976, - "line_end": 1061, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1004, - "line_end": 1017, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1033, - "line_end": 1049, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1034, - "line_end": 1038, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1041, - "line_end": 1044, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1045, - "line_end": 1048, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1052, - "line_end": 1058, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1066, - "line_end": 1077, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToPluginIndex", - "symbol_type": "Function", - "file_path": "", - "line_start": 1089, - "line_end": 1094, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeFromPluginIndex", - "symbol_type": "Function", - "file_path": "", - "line_start": 1099, - "line_end": 1107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_migrateFromLegacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1112, - "line_end": 1130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1118, - "line_end": 1127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1135, - "line_end": 1143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "config", - "symbol_type": "Function", - "file_path": "", - "line_start": 1148, - "line_end": 1153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "charmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1158, - "line_end": 1161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "charmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1163, - "line_end": 1165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1170, - "line_end": 1185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 1186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-display-utils.js", - "path": "./development/nyaflow/charmflow_v4/js/utils/plugin-display-utils.js", - "language": "javascript", - "size_bytes": 4030, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.377235944Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCache", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginDisplayUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compressor.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/compression/compressor.js", - "language": "javascript", - "size_bytes": 4830, - "total_lines": 188, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.398443354Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCompressor", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "BaseCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PassThroughCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "IntentCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "AggressiveCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intents.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/constants/intents.js", - "language": "javascript", - "size_bytes": 5390, - "total_lines": 139, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.403086569Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "isValidIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "base-intents.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/intents/base-intents.js", - "language": "javascript", - "size_bytes": 4095, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.407640314Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateBaseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-intents.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/intents/core-intents.js", - "language": "javascript", - "size_bytes": 7348, - "total_lines": 290, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.411535125Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGracefulRetirement", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeBirthAnnouncement", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-common-options.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/intents/intent-common-options.js", - "language": "javascript", - "size_bytes": 5479, - "total_lines": 172, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.414978499Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "addCommonOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommonDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeIntentOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-registry.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/intents/intent-registry.js", - "language": "javascript", - "size_bytes": 5238, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.418511682Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerBaseIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isBaseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentDefinition", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllIntentNames", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system-intents.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/intents/system-intents.js", - "language": "javascript", - "size_bytes": 4444, - "total_lines": 177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.422030409Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatusResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/interfaces/index.js", - "language": "javascript", - "size_bytes": 204, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.426484925Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent.interface.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/interfaces/intent.interface.js", - "language": "javascript", - "size_bytes": 561, - "total_lines": 15, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.430300694Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-manager.interface.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/interfaces/link-manager.interface.js", - "language": "javascript", - "size_bytes": 4038, - "total_lines": 74, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.433335395Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mesh.interface.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/interfaces/mesh.interface.js", - "language": "javascript", - "size_bytes": 880, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.436388336Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "capability-manager.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/managers/capability-manager.js", - "language": "javascript", - "size_bytes": 1226, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.441120687Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CapabilityManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lifecycle-manager.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/managers/lifecycle-manager.js", - "language": "javascript", - "size_bytes": 4202, - "total_lines": 149, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.444534961Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeBirth", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeRetirement", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scheduleShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRetirementSteps", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getState", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isAlive", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isRetiring", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LifecycleManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-manager.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/managers/link-manager.js", - "language": "javascript", - "size_bytes": 14802, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.448650723Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "requestLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "acceptLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "rejectLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNewRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAcceptance", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRejection", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutgoingRequests", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIncomingRequests", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEstablishedLinks", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onAttached", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDetached", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIdChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LinkManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "neighbor-manager.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/managers/neighbor-manager.js", - "language": "javascript", - "size_bytes": 4600, - "total_lines": 186, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.452683978Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "markAsShuttingDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findByCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pruneInactive", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NeighborManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "global-webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/global-webrtc-transport.js", - "language": "javascript", - "size_bytes": 6116, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.457665485Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "goGlobal", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrSignal", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrPeerDiscovered", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GlobalWebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "local-webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/local-webrtc-transport.js", - "language": "javascript", - "size_bytes": 20090, - "total_lines": 651, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.462125690Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_establishConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerOnline", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerDiscovery", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerDiscoveryResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleOffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAnswer", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIceCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerOffline", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupPeerConnectionEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupDataChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removePeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 583, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 582, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDiscoveredPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isConnected", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LocalWebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling-dev.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/nostr-signaling-dev.js", - "language": "javascript", - "size_bytes": 7443, - "total_lines": 284, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.466839413Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToRelay", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_subscribeToRoom", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleClose", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateSimpleId", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignalingDev", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling-simple.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/nostr-signaling-simple.js", - "language": "javascript", - "size_bytes": 3337, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.470517077Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleLocalMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignalingSimple", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/nostr-signaling.js", - "language": "javascript", - "size_bytes": 11823, - "total_lines": 384, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.474523507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToRelay", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_subscribeToSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRelayMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRelayClose", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateEventId", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_simpleHash", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignaling", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 6837, - "total_lines": 229, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.479316588Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport-base.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/transport-base.js", - "language": "javascript", - "size_bytes": 3980, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.482923923Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "transferHandlersTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TransportBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 4740, - "total_lines": 168, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.486449656Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "webrtc-nyamesh.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/webrtc-nyamesh.js", - "language": "javascript", - "size_bytes": 24498, - "total_lines": 755, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.491049823Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepareTransportConsciousness", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerWebRTCIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerTransportIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerMetaIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupAutonomousBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "awakTransportConsciousness", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFractalLayer", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupLayerCommunication", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCDisconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCOptimize", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCEvolve", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCDiscoverPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportSwitch", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportRoute", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportLearn", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportAdapt", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaRedefineIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaCreateLayer", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaModifyPhysics", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaConsciousnessLevel", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousThinking", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousDiscovery", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 580, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousOptimization", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_monitorAndOptimize", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performOptimization", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 616, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForBandwidth", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForLatency", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForReliability", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startStatsReporting", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_redefineDynamicIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConsciousnessState", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFractalStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 706, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 727, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 732, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebRTCNyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 753, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/webrtc-transport.js", - "language": "javascript", - "size_bytes": 14353, - "total_lines": 499, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.496149640Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToSignalingServer", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupWebRTC", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleOffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAnswer", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIceCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerList", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupPeerConnectionEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupDataChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removePeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "websocket-transport.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/messaging/websocket-transport.js", - "language": "javascript", - "size_bytes": 5061, - "total_lines": 177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.500265127Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createWebSocketTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-request.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/models/link-request.js", - "language": "javascript", - "size_bytes": 2753, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.505260626Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isExpired", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canRetry", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordRetry", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fromJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LinkRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/nyamesh.js", - "language": "javascript", - "size_bytes": 31602, - "total_lines": 1020, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.511255521Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerCoreHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "off", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "announce", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "useLinkManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDiscoveryPing", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityRegister", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityUnregister", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDataSend", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDataRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemPing", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemNotify", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreDetach", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCorePrune", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 643, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreIdConflict", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 673, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreIdChanged", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getSystemMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 713, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prune", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRespondToInformationRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 759, - "line_end": 763, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldShareDetailedInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 771, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 781, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 794, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_destroyTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 800, - "line_end": 804, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPhysicalPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 809, - "line_end": 811, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLogicalNeighbors", - "symbol_type": "Function", - "file_path": "", - "line_start": 816, - "line_end": 818, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "switchTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 859, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 893, - "line_end": 895, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 904, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 906, - "line_end": 908, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 934, - "line_end": 942, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 935, - "line_end": 941, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTransportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 975, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 999, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getTransportDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1005, - "line_end": 1016, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 1017, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "id-generator.js", - "path": "./development/nyaflow/charmflow_v4/nyamesh2/src/utils/id-generator.js", - "language": "javascript", - "size_bytes": 1391, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.517378585Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "generateId", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePrefixedId", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateUUID", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateShortId", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSortableId", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/data/html-parser/main.js", - "language": "javascript", - "size_bytes": 17363, - "total_lines": 540, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.526077899Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHttpResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HtmlParserPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/data/json-formatter/main.js", - "language": "javascript", - "size_bytes": 11989, - "total_lines": 377, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.532161464Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFormatRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFormattedJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "JsonFormatterPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/data/output-console/main.js", - "language": "javascript", - "size_bytes": 11959, - "total_lines": 419, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.538012836Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConsoleClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatData", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDataType", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "OutputConsolePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/data/string-uppercase/main.js", - "language": "javascript", - "size_bytes": 7919, - "total_lines": 283, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.543752526Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProcessText", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "StringUppercasePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/debug-console/main.js", - "language": "javascript", - "size_bytes": 13273, - "total_lines": 495, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.550831524Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutputColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "navigateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showVariables", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugConsolePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/message-log-panel/main.js", - "language": "javascript", - "size_bytes": 25598, - "total_lines": 820, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.557585433Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadHistoricalLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseLogLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 499, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 602, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 564, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFilteredLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 607, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "categorizeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelFromMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 675, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatLogData", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 703, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 708, - "line_end": 716, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 725, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 748, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 753, - "line_end": 758, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 786, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 791, - "line_end": 816, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MessageLogPanelPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 817, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/monaco-editor/intent-definitions.js", - "language": "javascript", - "size_bytes": 5808, - "total_lines": 267, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.564162264Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateMonacoIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoIntentSender", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/monaco-editor/main.js", - "language": "javascript", - "size_bytes": 12359, - "total_lines": 404, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.568339272Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadMonacoFromCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/node-tree-view/main.js", - "language": "javascript", - "size_bytes": 15276, - "total_lines": 563, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.575139033Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTreeFromCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "nodeMatchesFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTreeDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 559, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NodeTreeViewPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/developer-tools/property-inspector/main.js", - "language": "javascript", - "size_bytes": 15539, - "total_lines": 537, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.581458922Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPropertyInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countModifiedProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetToDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertyDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PropertyInspectorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/media/canvas-drawing/main.js", - "language": "javascript", - "size_bytes": 18092, - "total_lines": 620, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.592886129Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDrawingData", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 616, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasDrawingPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/media/chart-visualization/main.js", - "language": "javascript", - "size_bytes": 17507, - "total_lines": 543, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.599616322Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChartData", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSVGChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateBarChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateLineChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePieChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFromInputs", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadSampleData", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChartDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChartVisualizationPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/network/http-request/main.js", - "language": "javascript", - "size_bytes": 30171, - "total_lines": 742, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.608230176Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRequestSend", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleResponseGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 716, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 675, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 650, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 738, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HttpRequestPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 739, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/button-send/main.js", - "language": "javascript", - "size_bytes": 7415, - "total_lines": 276, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.615909897Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSettingsUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEnableToggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ButtonSendPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/html-display/main.js", - "language": "javascript", - "size_bytes": 12196, - "total_lines": 427, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.621506392Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRenderHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLoadURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRefresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSetSandbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeSandbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HtmlDisplayPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/input-text/main.js", - "language": "javascript", - "size_bytes": 10127, - "total_lines": 331, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.627326355Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInputSubmit", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInputUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInputGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "InputTextPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main-nyamesh.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/text-note/main-nyamesh.js", - "language": "javascript", - "size_bytes": 8028, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.633138574Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateText", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchText", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/text-note/main.js", - "language": "javascript", - "size_bytes": 6985, - "total_lines": 236, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.636910957Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-editor.plugin.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/_archive_text-editor.plugin.js", - "language": "javascript", - "size_bytes": 6663, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.641510586Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLanguageChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-note.plugin.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/ui/_archive_text-note.plugin.js", - "language": "javascript", - "size_bytes": 3400, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.645427734Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v4/plugins/categories/workflow/interval-inject/main.js", - "language": "javascript", - "size_bytes": 17332, - "total_lines": 588, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.652160633Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigureMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeInjection", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTriggeredAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntervalInMilliseconds", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHistoryHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 553, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 584, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntervalInjectPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 585, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v4/plugins/samples/index.js", - "language": "javascript", - "size_bytes": 5271, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.658795759Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "loadPluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPluginsByTag", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/charmflow_v4/src/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8450, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.667025598Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/charmflow_v4/src/core/core-communication.js", - "language": "javascript", - "size_bytes": 11289, - "total_lines": 401, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.671174676Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/charmflow_v4/src/core/core-fusion.js", - "language": "javascript", - "size_bytes": 10485, - "total_lines": 342, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.675448995Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/charmflow_v4/src/core/nyacore.js", - "language": "javascript", - "size_bytes": 24996, - "total_lines": 856, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.680332137Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 846, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/charmflow_v4/src/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3938, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.684538908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/charmflow_v4/src/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24680, - "total_lines": 753, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.689145028Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-plugin-manager.js", - "path": "./development/nyaflow/charmflow_v4/src/core/unified-plugin-manager.js", - "language": "javascript", - "size_bytes": 14168, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.694160030Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreatePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyPluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/charmflow_v4/src/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18226, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.699004136Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interface.js", - "path": "./development/nyaflow/charmflow_v4/src/interfaces/plugin-interface.js", - "language": "javascript", - "size_bytes": 4682, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.704416535Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/charmflow_v4/src/messaging/message.js", - "language": "javascript", - "size_bytes": 5309, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.709367814Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v4/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5448, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.713154494Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v4/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 10494, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.717560556Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-store.js", - "path": "./development/nyaflow/charmflow_v4/src/plugins/plugin-store.js", - "language": "javascript", - "size_bytes": 2942, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.723022104Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-plugin-legacy.js", - "path": "./development/nyaflow/charmflow_v5/js/archive/legacy-files/plugin-palette-plugin-legacy.js", - "language": "javascript", - "size_bytes": 59026, - "total_lines": 1795, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.752879878Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupRegistryIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginsFromCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryPluginFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectFolderBasedFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectLegacyFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLegacyCategoryFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 512, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 634, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 663, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleQuickFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 710, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 715, - "line_end": 729, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 721, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 774, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 738, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 748, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 760, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 765, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 779, - "line_end": 799, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 798, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 816, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 821, - "line_end": 828, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 890, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 882, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 909, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 920, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 941, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 944, - "line_end": 946, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 950, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleFavorite", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 973, - "line_end": 1052, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNyaCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1057, - "line_end": 1262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1092, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1111, - "line_end": 1127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeButtonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCalculatorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJsonPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1161, - "line_end": 1179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeHttpPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGenericPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1205, - "line_end": 1212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1215, - "line_end": 1225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 1228, - "line_end": 1234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 1252, - "line_end": 1257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1267, - "line_end": 1283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1288, - "line_end": 1295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1291, - "line_end": 1291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 1300, - "line_end": 1323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPriorityIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 1328, - "line_end": 1335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1340, - "line_end": 1343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 1348, - "line_end": 1351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1356, - "line_end": 1363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1365, - "line_end": 1371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1373, - "line_end": 1380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 1382, - "line_end": 1388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1390, - "line_end": 1397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1399, - "line_end": 1405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 1410, - "line_end": 1736, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1741, - "line_end": 1750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1747, - "line_end": 1747, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1755, - "line_end": 1769, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1774, - "line_end": 1785, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 1786, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 1063, - "line_end": 1235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-ui-factory-integrated.js", - "path": "./development/nyaflow/charmflow_v5/js/archive/legacy-files/plugin-ui-factory-integrated.js", - "language": "javascript", - "size_bytes": 10895, - "total_lines": 286, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.759505574Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElementDirect", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapsePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginUIFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-core-legacy.js", - "path": "./development/nyaflow/charmflow_v5/js/archive/project-core-legacy.js", - "language": "javascript", - "size_bytes": 80638, - "total_lines": 2346, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.768703010Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUIManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerConnectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPaletteManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAvailableFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "nyaCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "nyaCoreUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unifiedIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeProjectCoreIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extendPluginManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 737, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 754, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 966, - "line_end": 970, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 978, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginByNyaCoreId", - "symbol_type": "Function", - "file_path": "", - "line_start": 983, - "line_end": 990, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 995, - "line_end": 998, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllProjectPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1003, - "line_end": 1011, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1004, - "line_end": 1010, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 1016, - "line_end": 1020, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1017, - "line_end": 1018, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1029, - "line_end": 1066, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeAllConnectionsForPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1225, - "line_end": 1264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "capturePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 1425, - "line_end": 1518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureAllProjectStates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1523, - "line_end": 1535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1544, - "line_end": 1598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1603, - "line_end": 1618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1627, - "line_end": 1657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyCurrentProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1662, - "line_end": 1687, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1793, - "line_end": 1800, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1816, - "line_end": 1820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1839, - "line_end": 1901, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 2003, - "line_end": 2070, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateProjectData", - "symbol_type": "Function", - "file_path": "", - "line_start": 2075, - "line_end": 2145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2150, - "line_end": 2192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 2197, - "line_end": 2221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 2226, - "line_end": 2284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2227, - "line_end": 2283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2235, - "line_end": 2270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2246, - "line_end": 2257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2259, - "line_end": 2262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 2272, - "line_end": 2275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 2289, - "line_end": 2337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 2339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-boot-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/charmflow-boot-manager.js", - "language": "javascript", - "size_bytes": 10554, - "total_lines": 366, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.776260574Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVoidFlowBootStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkVoidFlowComponentsReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForComponentReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleComponentStatusChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startStatusMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowBootManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-debug-plugin.js", - "path": "./development/nyaflow/charmflow_v5/js/charmflow-debug-plugin.js", - "language": "javascript", - "size_bytes": 28844, - "total_lines": 1040, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.781853857Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onActivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDeactivated", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTargetSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldTrace", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "traceIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearTraceHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpState", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureState", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemState", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidFlowCoreStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runBenchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 671, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 675, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 693, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceSnapshot", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 727, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 736, - "line_end": 767, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getErrorStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 772, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRecentErrors", - "symbol_type": "Function", - "file_path": "", - "line_start": 786, - "line_end": 788, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 830, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 822, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 841, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpConnectionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 848, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 853, - "line_end": 859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetAllData", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 873, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 886, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 912, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 914, - "line_end": 914, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 932, - "line_end": 945, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSessionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 950, - "line_end": 954, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 959, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 973, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 988, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1027, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1032, - "line_end": 1037, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowDebugPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 1038, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "charmflow-message-adapter.js", - "path": "./development/nyaflow/charmflow_v5/js/charmflow-message-adapter.js", - "language": "javascript", - "size_bytes": 8738, - "total_lines": 306, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.788053630Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateFlowId", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacket", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDisconnectionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createExecutionMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFlowRecord", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sanitizeForLogging", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAdapterStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanupOldFlows", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptVoidPacketBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCompatibilityMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowMessageAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "connection-line-renderer.js", - "path": "./development/nyaflow/charmflow_v5/js/connection-line-renderer.js", - "language": "javascript", - "size_bytes": 34521, - "total_lines": 1012, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.794265232Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderFanOutConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateFanOutPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBezierPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateArcPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPathElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureArrowMarker", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPathAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_colorToId", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 574, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSourceConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderBundledConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 637, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculatePureBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 660, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateBundlePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 667, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCentroid", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSeparatedPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 714, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBundleColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 726, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPureBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 792, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPureBundleInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 844, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 802, - "line_end": 813, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 837, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 843, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleDetailsModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 849, - "line_end": 856, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 861, - "line_end": 889, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBundleElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 894, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 937, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 943, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 945, - "line_end": 948, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unbundleConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 974, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDisplayMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 985, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleDetailsFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 995, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleMenuFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1000, - "line_end": 1003, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBundleUnbundleFallback", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1011, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ConnectionLineRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 1012, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug-nyameshos-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/debug-nyameshos-manager.js", - "language": "javascript", - "size_bytes": 20783, - "total_lines": 620, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.800534548Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugNyameshOS", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDebugNyameshOS", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 571, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 579, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugNyameshOSManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-bridge.js", - "path": "./development/nyaflow/charmflow_v5/js/intent-bridge.js", - "language": "javascript", - "size_bytes": 13287, - "total_lines": 526, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.805778750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventIntentMapping", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enable", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disable", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detachEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEventListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDOMEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldProcessEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isCanvasArea", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isDraggableElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeUIElementClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeDragMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "translateEventToIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fallbackToOriginalHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableEventMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeIgnoreClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "logError", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIdFromElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizeMousePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModifierKeys", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementState", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CharmFlowIntentBridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BridgeUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 459, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/charmflow_v5/js/intent-definitions.js", - "language": "javascript", - "size_bytes": 15638, - "total_lines": 462, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.810329019Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateSchema", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkType", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "matchesPattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 303, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main-nyacore.js", - "path": "./development/nyaflow/charmflow_v5/js/main-nyacore.js", - "language": "javascript", - "size_bytes": 44669, - "total_lines": 1196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.816491151Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "nyameshLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePhase", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolveDependency", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateDependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePhase", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDeprecatedAPIs", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDeprecatedWarnings", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalReferences", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setGlobalReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setGlobalComponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowVoidCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCoreSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "finalizeSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNyaCoreUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasArea", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalReferences", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupTestFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMessageAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowBootManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeStage3Components", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 591, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testPhase4DebugSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 628, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 643, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNyaMeshRightPanel", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 699, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginSelectionHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 704, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 713, - "line_end": 715, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 740, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupLogRedirection", - "symbol_type": "Function", - "file_path": "", - "line_start": 747, - "line_end": 763, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enhanceExecuteButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 778, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 774, - "line_end": 776, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPureArchitectureZenMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 781, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "performIntegrationTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 809, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 814, - "line_end": 835, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeSVGMarkers", - "symbol_type": "Function", - "file_path": "", - "line_start": 840, - "line_end": 888, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeNodePalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 890, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 893, - "line_end": 926, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 902, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 905, - "line_end": 923, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 936, - "line_end": 976, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeCharmFlowCoreArchitecture", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 999, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectNyaCoreUIWithCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1005, - "line_end": 1026, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateNyaCoreComponents", - "symbol_type": "Function", - "file_path": "", - "line_start": 1031, - "line_end": 1042, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCoreReferences", - "symbol_type": "Function", - "file_path": "", - "line_start": 1047, - "line_end": 1079, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupConnectionManagerIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1084, - "line_end": 1094, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1099, - "line_end": 1112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testVoidCoreUIIntegration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1117, - "line_end": 1141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUIComponentsPanelInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 1146, - "line_end": 1189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1171, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1179, - "line_end": 1186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "InitializationManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "CompatibilityLayer", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "monaco-plugin-editor.js", - "path": "./development/nyaflow/charmflow_v5/js/monaco-plugin-editor.js", - "language": "javascript", - "size_bytes": 15417, - "total_lines": 511, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.823352622Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeViaCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMonacoLoading", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openPluginEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplateCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateDefaultTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showEditorModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "savePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeExecuteCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoPluginEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore-ui.js", - "path": "./development/nyaflow/charmflow_v5/js/nyacore-ui.js", - "language": "javascript", - "size_bytes": 35685, - "total_lines": 1147, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.828976562Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDragOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDragDropIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasRect", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupWindowEventSubscription", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_waitForNyaCoreInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performUIAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerUIIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDirectUIChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 555, - "line_end": 579, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 570, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processUIChannelQueue", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 590, - "line_end": 593, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUpdateKey", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyUIUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 674, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 671, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 687, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextInputSubmit", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 736, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginElementData", - "symbol_type": "Function", - "file_path": "", - "line_start": 741, - "line_end": 775, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElementProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 821, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 832, - "line_end": 876, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 895, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isUIPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 902, - "line_end": 929, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 939, - "line_end": 941, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 943, - "line_end": 945, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 950, - "line_end": 952, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 954, - "line_end": 958, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 978, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 984, - "line_end": 988, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 990, - "line_end": 992, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 994, - "line_end": 996, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1001, - "line_end": 1008, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 1011, - "line_end": 1013, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "completeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1015, - "line_end": 1019, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 1021, - "line_end": 1025, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1027, - "line_end": 1032, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1034, - "line_end": 1039, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1041, - "line_end": 1043, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1045, - "line_end": 1056, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showBundleMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1061, - "line_end": 1065, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1067, - "line_end": 1071, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 1073, - "line_end": 1077, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 1079, - "line_end": 1083, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDragDropIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1088, - "line_end": 1094, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1099, - "line_end": 1101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCharmFlowCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1103, - "line_end": 1105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1110, - "line_end": 1118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1120, - "line_end": 1124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1126, - "line_end": 1128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1141, - "line_end": 1143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 1145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-migration-tool.js", - "path": "./development/nyaflow/charmflow_v5/js/nyamesh-migration-tool.js", - "language": "javascript", - "size_bytes": 14100, - "total_lines": 503, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.834776044Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "migrateAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findPluginFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertPluginFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyaCorePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertToNyaMesh", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBackup", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeChanges", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateReport", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "convertSinglePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseArgs", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshMigrationTool", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "MigrationCLI", - "symbol_type": "Class", - "file_path": "", - "line_start": 431, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-os-core.js", - "path": "./development/nyaflow/charmflow_v5/js/nyamesh-os-core.js", - "language": "javascript", - "size_bytes": 14244, - "total_lines": 475, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.839322730Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_dispatchMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getState", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setState", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateCoreId", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateCoreConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateInheritance", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshOSCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "NyaMeshOSUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 413, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-plugin-base.js", - "path": "./development/nyaflow/charmflow_v5/js/nyamesh-plugin-base.js", - "language": "javascript", - "size_bytes": 31742, - "total_lines": 874, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.844632624Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setDOMElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDOMElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupInitialUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "awaken", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 700, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 772, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 777, - "line_end": 780, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 785, - "line_end": 788, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 796, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveData", - "symbol_type": "Function", - "file_path": "", - "line_start": 801, - "line_end": 807, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadData", - "symbol_type": "Function", - "file_path": "", - "line_start": 809, - "line_end": 814, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 824, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 829, - "line_end": 833, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 845, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePluginConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 850, - "line_end": 859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 834, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PluginUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 839, - "line_end": 860, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-right-panel.js", - "path": "./development/nyaflow/charmflow_v5/js/nyamesh-right-panel.js", - "language": "javascript", - "size_bytes": 15573, - "total_lines": 545, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.849735285Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "render", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openDebugConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadNyaMeshLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadDebugData", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onPluginSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mount", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMeshComponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "NyaMeshRightPanel", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh2-bridge.js", - "path": "./development/nyaflow/charmflow_v5/js/nyamesh2-bridge.js", - "language": "javascript", - "size_bytes": 15740, - "total_lines": 550, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.854357808Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupIntentHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityRegister", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityUnregister", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreDetach", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_queryNeighborCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_emitCharmFlowEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generatePluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateConnectionId", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateResponseId", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getBridgeStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNyaMesh2Bridge", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMesh2Bridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-collection.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-collection.js", - "language": "javascript", - "size_bytes": 20298, - "total_lines": 713, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.859371798Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "visualize", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateGradient", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPreview", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDataPoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleJoystick", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateVisualState", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseMarkdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addKeyframe", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "play", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "evaluate", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeEval", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNodePositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderMinimap", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 630, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 644, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTargetIndicator", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-filter-ui.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-filter-ui.js", - "language": "javascript", - "size_bytes": 20981, - "total_lines": 691, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.864393880Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCategoryFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFilterButton", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTagCloud", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "bindEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCategoryFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAttributeFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleTagFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 580, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 550, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideSearchResults", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTagCloudVisual", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 622, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 666, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 684, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginFilterUI", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-hot-reloader.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-hot-reloader.js", - "language": "javascript", - "size_bytes": 17938, - "total_lines": 461, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.869277887Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shallowCloneState", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dynamicImportFromCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "transformImportPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "guessPluginCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginHotReloader", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-palette/index.js", - "language": "javascript", - "size_bytes": 539, - "total_lines": 12, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.873907964Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-data-provider.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-palette/plugin-data-provider.js", - "language": "javascript", - "size_bytes": 7959, - "total_lines": 273, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.877416756Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginRegistry", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForRegistryInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizePluginData", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupRegistryIntentListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginDataProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-plugin.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-palette/plugin-palette-plugin.js", - "language": "javascript", - "size_bytes": 9993, - "total_lines": 332, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.881807656Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIState", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginItemEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPluginToCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPalettePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-renderer.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-palette/plugin-palette-renderer.js", - "language": "javascript", - "size_bytes": 17959, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.886594374Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cacheElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateGrid", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 212, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilterButtons", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCategoryTabs", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSearchValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideTooltip", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPriorityIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 657, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPaletteRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-palette-state.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-palette/plugin-palette-state.js", - "language": "javascript", - "size_bytes": 7806, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.890528327Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSearchText", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSelectedPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setSortBy", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleQuickFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isFilterActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setFavorites", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setUsageData", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleFavorite", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToRecentPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "incrementUsageCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetFilters", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCurrentState", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginPaletteState", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-registry.js", - "path": "./development/nyaflow/charmflow_v5/js/plugin-registry.js", - "language": "javascript", - "size_bytes": 19495, - "total_lines": 592, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.895702507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleError", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getModuleBaseURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginModule", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginModule", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeDefaultPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "discoverCategories", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scanCategoryFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectPluginFolders", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 499, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyacoreV14Compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isNyacoreV15Compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginManifest", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugRegisteredPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-connection-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-connection-manager.js", - "language": "javascript", - "size_bytes": 9493, - "total_lines": 350, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.901424601Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerConnectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionManagerStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCancel", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findConnectionPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-debug-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-debug-manager.js", - "language": "javascript", - "size_bytes": 9218, - "total_lines": 324, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.905486607Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupGlobalDebugFunctions", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugState", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dumpIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMemoryUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getErrorStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 291, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectDebugManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-intent-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-intent-manager.js", - "language": "javascript", - "size_bytes": 8683, - "total_lines": 290, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.909558993Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupSystemIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupUIIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupConnectionIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupPluginIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupDebugIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleProjectNew", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIElementCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIElementMove", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIElementSelect", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIElementDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIElementUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionCancel", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConnectionDelete", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginAdd", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginConfigure", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugTraceStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugTraceStop", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugStateDump", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugStateCapture", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugPerformanceMeasure", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugStatsGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugExport", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugReset", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectIntentManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-persistence-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-persistence-manager.js", - "language": "javascript", - "size_bytes": 18623, - "total_lines": 656, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.914478686Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restorePluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isCompatibleVersion", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 593, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectPersistenceManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-plugin-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-plugin-manager.js", - "language": "javascript", - "size_bytes": 20930, - "total_lines": 632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.919730916Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUIElementDirect", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapsePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "projectInstances", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "projectMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectionManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 628, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 629, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-system-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core/project-system-manager.js", - "language": "javascript", - "size_bytes": 12932, - "total_lines": 461, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.924593039Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPerformanceMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLogHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "diagnoseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportSystemState", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "incrementStat", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectSystemManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-core.js", - "path": "./development/nyaflow/charmflow_v5/js/project-core.js", - "language": "javascript", - "size_bytes": 14214, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.929774394Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPluginInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "diagnoseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectState", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeProjectConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectionCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyCurrentProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "markProjectSaved", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerProjectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectInstances", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getProjectDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 480, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas-service.js", - "path": "./development/nyaflow/charmflow_v5/js/services/canvas-service.js", - "language": "javascript", - "size_bytes": 3391, - "total_lines": 121, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.934951408Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRect", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "appendChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasService", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "element-service.js", - "path": "./development/nyaflow/charmflow_v5/js/services/element-service.js", - "language": "javascript", - "size_bytes": 2000, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.938151715Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forEach", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ElementService", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message-service.js", - "path": "./development/nyaflow/charmflow_v5/js/services/message-service.js", - "language": "javascript", - "size_bytes": 2287, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.941323028Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishNotice", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishElementDeselected", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MessageService", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "selection-service.js", - "path": "./development/nyaflow/charmflow_v5/js/services/selection-service.js", - "language": "javascript", - "size_bytes": 3160, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.944711034Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SelectionService", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8450, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.950580728Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/core-communication.js", - "language": "javascript", - "size_bytes": 11289, - "total_lines": 401, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.954816422Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/core-fusion.js", - "language": "javascript", - "size_bytes": 10485, - "total_lines": 342, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.959012427Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/nyacore.js", - "language": "javascript", - "size_bytes": 24996, - "total_lines": 856, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.963692004Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 846, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3938, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.968079891Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24680, - "total_lines": 753, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.973462240Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-plugin-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/unified-plugin-manager.js", - "language": "javascript", - "size_bytes": 14168, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.980150415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreatePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyPluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/src/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18226, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.987038291Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interface.js", - "path": "./development/nyaflow/charmflow_v5/js/src/interfaces/plugin-interface.js", - "language": "javascript", - "size_bytes": 4682, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:42.995579526Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/charmflow_v5/js/src/messaging/message.js", - "language": "javascript", - "size_bytes": 5309, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.002311114Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v5/js/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5448, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.007610346Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v5/js/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 10494, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.012546632Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-store.js", - "path": "./development/nyaflow/charmflow_v5/js/src/plugins/plugin-store.js", - "language": "javascript", - "size_bytes": 2942, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.018076687Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-connection-manager.js", - "path": "./development/nyaflow/charmflow_v5/js/unified-connection-manager.js", - "language": "javascript", - "size_bytes": 52438, - "total_lines": 1435, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.025021752Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLegacyManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableFeature", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "switchToUnified", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePortClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeTempConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 722, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 727, - "line_end": 733, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateTempLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupMouseHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 824, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 771, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 774, - "line_end": 793, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 796, - "line_end": 803, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 806, - "line_end": 818, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanupMouseHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 829, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isInConnectionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 854, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 859, - "line_end": 875, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnectionWithRenderer", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 935, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_drawConnectionSimple", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createSVGLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 968, - "line_end": 999, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getPluginElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1004, - "line_end": 1032, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1009, - "line_end": 1009, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1010, - "line_end": 1010, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1011, - "line_end": 1011, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1012, - "line_end": 1012, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1013, - "line_end": 1013, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1027, - "line_end": 1027, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1029, - "line_end": 1029, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeConnectionLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1046, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawConnectionsForElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1051, - "line_end": 1080, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1066, - "line_end": 1077, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performConnectionRedraw", - "symbol_type": "Function", - "file_path": "", - "line_start": 1085, - "line_end": 1109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1103, - "line_end": 1106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getCompatibleConnectionTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 1118, - "line_end": 1145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1144, - "line_end": 1144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 1150, - "line_end": 1167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_showConnectionCandidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 1172, - "line_end": 1191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1186, - "line_end": 1190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createCandidateModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1196, - "line_end": 1281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1224, - "line_end": 1237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1253, - "line_end": 1269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1254, - "line_end": 1258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1261, - "line_end": 1264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1265, - "line_end": 1268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1272, - "line_end": 1278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 1286, - "line_end": 1321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToPluginIndex", - "symbol_type": "Function", - "file_path": "", - "line_start": 1333, - "line_end": 1338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeFromPluginIndex", - "symbol_type": "Function", - "file_path": "", - "line_start": 1343, - "line_end": 1351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_migrateFromLegacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 1356, - "line_end": 1374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1362, - "line_end": 1371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "config", - "symbol_type": "Function", - "file_path": "", - "line_start": 1392, - "line_end": 1397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "projectCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1402, - "line_end": 1405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "projectCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 1407, - "line_end": 1409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1414, - "line_end": 1429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedConnectionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 1430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-display-utils.js", - "path": "./development/nyaflow/charmflow_v5/js/utils/plugin-display-utils.js", - "language": "javascript", - "size_bytes": 4030, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.031522966Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCache", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginDisplayUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-logger.js", - "path": "./development/nyaflow/charmflow_v5/js/utils/unified-logger.js", - "language": "javascript", - "size_bytes": 2604, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.035070952Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "unifiedLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPrefixedLogger", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyLogger", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/canvas.js", - "language": "javascript", - "size_bytes": 6176, - "total_lines": 211, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.040073374Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUnifiedContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "appendChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRelativePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constrainPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspaceCanvas", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-connection-actions.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu/context-menu-connection-actions.js", - "language": "javascript", - "size_bytes": 6920, - "total_lines": 194, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.044887559Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuConnectionActions", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-core.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu/context-menu-core.js", - "language": "javascript", - "size_bytes": 6109, - "total_lines": 211, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.048627806Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContextMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMenuItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createSeparator", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-edit-actions.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu/context-menu-edit-actions.js", - "language": "javascript", - "size_bytes": 8109, - "total_lines": 233, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.052377862Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addEditCodeMenuItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showDevelopmentMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPluginCode_FUTURE", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateNyaMeshPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isPluginRegistryReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMonacoEditorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeTypeFromPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableNyaMeshCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuEditActions", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu-plugin-actions.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu/context-menu-plugin-actions.js", - "language": "javascript", - "size_bytes": 10733, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.056425793Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deletePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "copyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "duplicatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pastePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ContextMenuPluginActions", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu/index.js", - "language": "javascript", - "size_bytes": 6095, - "total_lines": 214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.060329823Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showConnectionMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hideMenu", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createMenuItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createSeparator", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deletePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "copyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "duplicatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deleteConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showCanvasProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "currentTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "currentTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "currentTargetType", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "currentTargetType", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspaceContextMenu", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context-menu.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/context-menu.js", - "language": "javascript", - "size_bytes": 823, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.064003473Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "elements.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/elements.js", - "language": "javascript", - "size_bytes": 8231, - "total_lines": 273, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.067459131Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVisualContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeUnwantedClasses", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspaceElements", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "interactions.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/interactions.js", - "language": "javascript", - "size_bytes": 19123, - "total_lines": 607, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.071970162Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "makeElementInteractive", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableIntentMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInteractionState", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllInteractions", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementInteracting", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspaceInteractions", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 602, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "placement.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/placement.js", - "language": "javascript", - "size_bytes": 9808, - "total_lines": 341, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.076520261Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enablePaletteDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disablePaletteDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlacementState", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspacePlacement", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "selection.js", - "path": "./development/nyaflow/charmflow_v5/js/workspace/selection.js", - "language": "javascript", - "size_bytes": 3836, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.080565843Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deselectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleElementSelection", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearAllSelections", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedElementIds", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectedCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectMultipleElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElementsInRange", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSelectionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WorkspaceSelection", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compressor.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/compression/compressor.js", - "language": "javascript", - "size_bytes": 4830, - "total_lines": 188, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.102463405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compress", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "decompress", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCompressor", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "BaseCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "PassThroughCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "IntentCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "AggressiveCompressor", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intents.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/constants/intents.js", - "language": "javascript", - "size_bytes": 5390, - "total_lines": 139, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.107170228Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "isValidIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "base-intents.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/intents/base-intents.js", - "language": "javascript", - "size_bytes": 4095, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.111626536Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateBaseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-intents.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/intents/core-intents.js", - "language": "javascript", - "size_bytes": 7348, - "total_lines": 290, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.115316716Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGracefulRetirement", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeBirthAnnouncement", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-common-options.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/intents/intent-common-options.js", - "language": "javascript", - "size_bytes": 5479, - "total_lines": 172, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.118928002Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "addCommonOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommonDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeIntentOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-registry.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/intents/intent-registry.js", - "language": "javascript", - "size_bytes": 5238, - "total_lines": 207, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.122489632Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerBaseIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isBaseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentDefinition", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllIntentNames", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system-intents.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/intents/system-intents.js", - "language": "javascript", - "size_bytes": 4444, - "total_lines": 177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.126238613Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatusResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/interfaces/index.js", - "language": "javascript", - "size_bytes": 204, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.130865204Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent.interface.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/interfaces/intent.interface.js", - "language": "javascript", - "size_bytes": 561, - "total_lines": 15, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.134000800Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-manager.interface.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/interfaces/link-manager.interface.js", - "language": "javascript", - "size_bytes": 4038, - "total_lines": 74, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.136975879Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mesh.interface.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/interfaces/mesh.interface.js", - "language": "javascript", - "size_bytes": 880, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.139885276Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "capability-manager.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/managers/capability-manager.js", - "language": "javascript", - "size_bytes": 1226, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.144221830Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CapabilityManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lifecycle-manager.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/managers/lifecycle-manager.js", - "language": "javascript", - "size_bytes": 4202, - "total_lines": 149, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.147751652Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeBirth", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeRetirement", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "scheduleShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRetirementSteps", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getState", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isAlive", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isRetiring", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LifecycleManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-manager.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/managers/link-manager.js", - "language": "javascript", - "size_bytes": 14802, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.151992245Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "requestLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "acceptLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "rejectLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNewRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAcceptance", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRejection", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutgoingRequests", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIncomingRequests", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEstablishedLinks", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onAttached", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDetached", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIdChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LinkManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "neighbor-manager.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/managers/neighbor-manager.js", - "language": "javascript", - "size_bytes": 4600, - "total_lines": 186, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.156083216Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "markAsShuttingDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findByCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pruneInactive", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NeighborManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "global-webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/global-webrtc-transport.js", - "language": "javascript", - "size_bytes": 6116, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.161015700Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "goGlobal", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrSignal", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrPeerDiscovered", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GlobalWebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "local-webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/local-webrtc-transport.js", - "language": "javascript", - "size_bytes": 20090, - "total_lines": 651, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.165640394Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_establishConnection", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerOnline", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerDiscovery", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerDiscoveryResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleOffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAnswer", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIceCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerOffline", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupPeerConnectionEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupDataChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removePeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 583, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 582, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDiscoveredPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isConnected", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 615, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 648, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LocalWebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 649, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling-dev.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/nostr-signaling-dev.js", - "language": "javascript", - "size_bytes": 7443, - "total_lines": 284, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.170213757Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToRelay", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_subscribeToRoom", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_broadcastMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleClose", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateSimpleId", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignalingDev", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling-simple.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/nostr-signaling-simple.js", - "language": "javascript", - "size_bytes": 3337, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.173942530Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleLocalMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignalingSimple", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nostr-signaling.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/nostr-signaling.js", - "language": "javascript", - "size_bytes": 11823, - "total_lines": 384, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.177970253Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToRelay", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_subscribeToSignaling", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_announcePresence", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRelayMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleNostrEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleRelayClose", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_generateEventId", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_simpleHash", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NostrSignaling", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 6837, - "total_lines": 229, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.182170703Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport-base.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/transport-base.js", - "language": "javascript", - "size_bytes": 3980, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.185652576Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "transferHandlersTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TransportBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 4740, - "total_lines": 168, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.189161905Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "webrtc-nyamesh.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/webrtc-nyamesh.js", - "language": "javascript", - "size_bytes": 24498, - "total_lines": 755, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.193789054Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepareTransportConsciousness", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerWebRTCIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerTransportIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerMetaIntents", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupAutonomousBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "awakTransportConsciousness", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFractalLayer", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupLayerCommunication", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCDisconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCOptimize", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCEvolve", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleWebRTCDiscoverPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportSwitch", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportRoute", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportLearn", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleTransportAdapt", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaRedefineIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaCreateLayer", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaModifyPhysics", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleMetaConsciousnessLevel", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousThinking", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousDiscovery", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 580, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_autonomousOptimization", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_monitorAndOptimize", - "symbol_type": "Function", - "file_path": "", - "line_start": 594, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performOptimization", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 616, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForBandwidth", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForLatency", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 632, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_evolveForReliability", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startStatsReporting", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_redefineDynamicIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConsciousnessState", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFractalStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 706, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 727, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 732, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebRTCNyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 753, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "webrtc-transport.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/webrtc-transport.js", - "language": "javascript", - "size_bytes": 14353, - "total_lines": 499, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.199024426Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_connectToSignalingServer", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupWebRTC", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleOffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleAnswer", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIceCandidate", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handlePeerList", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupPeerConnectionEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupDataChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendToPeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSignalingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removePeer", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getConnectedPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 496, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebRTCTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "websocket-transport.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/messaging/websocket-transport.js", - "language": "javascript", - "size_bytes": 5061, - "total_lines": 177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.203129895Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createWebSocketTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "link-request.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/models/link-request.js", - "language": "javascript", - "size_bytes": 2753, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.207887933Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isExpired", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canRetry", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordRetry", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fromJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LinkRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/nyamesh.js", - "language": "javascript", - "size_bytes": 32921, - "total_lines": 1059, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.213504119Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_registerCoreHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "off", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "announce", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "useLinkManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDiscoveryPing", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityRegister", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCapabilityUnregister", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDataSend", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleDataRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemPing", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemNotify", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 558, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleSystemStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreLink", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreDetach", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 596, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCorePrune", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 606, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 645, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 647, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreIdConflict", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleCoreIdChanged", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 746, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getSystemMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 752, - "line_end": 758, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prune", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRespondToInformationRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 798, - "line_end": 802, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldShareDetailedInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 807, - "line_end": 810, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCapabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 826, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 833, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_destroyTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 843, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPhysicalPeers", - "symbol_type": "Function", - "file_path": "", - "line_start": 848, - "line_end": 850, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLogicalNeighbors", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "changeId", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 891, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "switchTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 1002, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 932, - "line_end": 934, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 939, - "line_end": 943, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 945, - "line_end": 947, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 950, - "line_end": 953, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 973, - "line_end": 981, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 980, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTransportInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1014, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1038, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_getTransportDebugInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 1044, - "line_end": 1055, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 1056, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "id-generator.js", - "path": "./development/nyaflow/charmflow_v5/nyamesh2/src/utils/id-generator.js", - "language": "javascript", - "size_bytes": 1391, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.219770600Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "generateId", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePrefixedId", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateUUID", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateShortId", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSortableId", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/data/html-parser/main.js", - "language": "javascript", - "size_bytes": 17456, - "total_lines": 543, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.229372389Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHttpResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HtmlParserPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/data/json-formatter/main.js", - "language": "javascript", - "size_bytes": 11912, - "total_lines": 376, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.235612425Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFormatRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFormattedJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 360, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "JsonFormatterPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/data/output-console/main.js", - "language": "javascript", - "size_bytes": 12613, - "total_lines": 390, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.241827470Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConsoleOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConsoleClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatData", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDataType", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/data/string-uppercase/main.js", - "language": "javascript", - "size_bytes": 7900, - "total_lines": 285, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.248047013Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "StringUppercasePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/debug-console/main.js", - "language": "javascript", - "size_bytes": 13368, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.255056768Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutputColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "navigateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 360, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showVariables", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "DebugConsolePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/message-log-panel/main.js", - "language": "javascript", - "size_bytes": 25684, - "total_lines": 823, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.261805620Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadHistoricalLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseLogLine", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDebugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 510, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFilteredLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 636, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 635, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "categorizeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 651, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelFromMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatLogData", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 706, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 719, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 728, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 761, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 766, - "line_end": 773, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 778, - "line_end": 789, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 794, - "line_end": 819, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MessageLogPanelPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/monaco-editor/intent-definitions.js", - "language": "javascript", - "size_bytes": 5808, - "total_lines": 267, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.268429431Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateMonacoIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoIntentSender", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/monaco-editor/main.js", - "language": "javascript", - "size_bytes": 12432, - "total_lines": 407, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.272383243Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadMonacoFromCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/node-tree-view/main.js", - "language": "javascript", - "size_bytes": 15374, - "total_lines": 566, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.279253143Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTreeFromCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "nodeMatchesFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 467, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTreeDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NodeTreeViewPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/developer-tools/property-inspector/main.js", - "language": "javascript", - "size_bytes": 15628, - "total_lines": 540, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.285469094Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleElementSelected", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPropertyEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderPropertyInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countModifiedProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetToDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePropertyDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 486, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PropertyInspectorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/media/canvas-drawing/main.js", - "language": "javascript", - "size_bytes": 18201, - "total_lines": 623, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.296404509Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDrawingData", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redrawAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 523, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCanvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 551, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 594, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 619, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasDrawingPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/media/chart-visualization/main.js", - "language": "javascript", - "size_bytes": 17552, - "total_lines": 546, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.303383879Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChartData", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSVGChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateBarChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateLineChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePieChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 407, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFromInputs", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadSampleData", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateChartDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChartVisualizationPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/network/http-request/main.js", - "language": "javascript", - "size_bytes": 30276, - "total_lines": 746, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.312381837Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRequestSend", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleResponseGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 483, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 490, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 679, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 654, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 716, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 725, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HttpRequestPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 743, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/button-send/main.js", - "language": "javascript", - "size_bytes": 7476, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.320384908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSettingsUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEnableToggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ButtonSendPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/html-display/main.js", - "language": "javascript", - "size_bytes": 12204, - "total_lines": 429, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.326750848Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HtmlDisplayPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/input-text/main.js", - "language": "javascript", - "size_bytes": 9878, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.332586048Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendText", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInputRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main-nyamesh.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/text-note/main-nyamesh.js", - "language": "javascript", - "size_bytes": 8028, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.338313064Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateText", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "connectToPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchText", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/text-note/main.js", - "language": "javascript", - "size_bytes": 7071, - "total_lines": 239, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.342041236Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-editor.plugin.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/_archive_text-editor.plugin.js", - "language": "javascript", - "size_bytes": 6663, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.346627673Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLanguageChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-note.plugin.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/ui/_archive_text-note.plugin.js", - "language": "javascript", - "size_bytes": 3400, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.350551817Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/charmflow_v5/plugins/categories/workflow/interval-inject/main.js", - "language": "javascript", - "size_bytes": 17393, - "total_lines": 591, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.357297477Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onDOMReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigureMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeInjection", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTriggeredAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntervalInMilliseconds", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 413, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHistoryHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntervalInjectPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/charmflow_v5/plugins/samples/index.js", - "language": "javascript", - "size_bytes": 5271, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.363945709Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "loadPluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPluginsByTag", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/charmflow_v5/src/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8450, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.372192974Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/charmflow_v5/src/core/core-communication.js", - "language": "javascript", - "size_bytes": 11289, - "total_lines": 401, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.376659987Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/charmflow_v5/src/core/core-fusion.js", - "language": "javascript", - "size_bytes": 10485, - "total_lines": 342, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.381254443Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/charmflow_v5/src/core/nyacore.js", - "language": "javascript", - "size_bytes": 24996, - "total_lines": 856, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.386270604Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 846, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/charmflow_v5/src/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3938, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.390547714Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/charmflow_v5/src/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24680, - "total_lines": 753, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.395094051Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-plugin-manager.js", - "path": "./development/nyaflow/charmflow_v5/src/core/unified-plugin-manager.js", - "language": "javascript", - "size_bytes": 14168, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.400260856Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreatePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyPluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/charmflow_v5/src/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18226, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.405098346Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interface.js", - "path": "./development/nyaflow/charmflow_v5/src/interfaces/plugin-interface.js", - "language": "javascript", - "size_bytes": 4682, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.410690542Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/charmflow_v5/src/messaging/message.js", - "language": "javascript", - "size_bytes": 5309, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.415594693Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/charmflow_v5/src/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5448, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.419343949Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/charmflow_v5/src/messaging/transport.js", - "language": "javascript", - "size_bytes": 10494, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.423700692Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-store.js", - "path": "./development/nyaflow/charmflow_v5/src/plugins/plugin-store.js", - "language": "javascript", - "size_bytes": 2942, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.428869087Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cogito_observer_demo.js", - "path": "./development/nyaflow/examples/demos/cogito_observer_demo.js", - "language": "javascript", - "size_bytes": 8862, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.917130013Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "galaxy_viewer_demo.js", - "path": "./development/nyaflow/examples/demos/galaxy_viewer_demo.js", - "language": "javascript", - "size_bytes": 2074, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.921369310Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "markdown_editor_demo.js", - "path": "./development/nyaflow/examples/demos/markdown_editor_demo.js", - "language": "javascript", - "size_bytes": 8033, - "total_lines": 229, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.924861466Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message_city_demo.js", - "path": "./development/nyaflow/examples/demos/message_city_demo.js", - "language": "javascript", - "size_bytes": 6377, - "total_lines": 165, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.928667542Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system_monitor_demo.js", - "path": "./development/nyaflow/examples/demos/system_monitor_demo.js", - "language": "javascript", - "size_bytes": 1185, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.932055391Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore_quickstart_demo.js", - "path": "./development/nyaflow/examples/demos/voidcore_quickstart_demo.js", - "language": "javascript", - "size_bytes": 8487, - "total_lines": 264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.935610509Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createParticles", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/examples/main.js", - "language": "javascript", - "size_bytes": 225, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.943719405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 7, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/examples/src/core-communication.js", - "language": "javascript", - "size_bytes": 9650, - "total_lines": 353, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.949595589Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/examples/src/core-fusion.js", - "language": "javascript", - "size_bytes": 10643, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.953812580Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.js", - "path": "./development/nyaflow/examples/src/core.js", - "language": "javascript", - "size_bytes": 218, - "total_lines": 9, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.957334111Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/examples/src/index.js", - "language": "javascript", - "size_bytes": 1210, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.960412380Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/examples/src/message.js", - "language": "javascript", - "size_bytes": 3276, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.963693762Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 11, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore.js", - "path": "./development/nyaflow/examples/src/voidcore.js", - "language": "javascript", - "size_bytes": 2747, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.967793468Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 8, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore_base.js", - "path": "./development/nyaflow/examples/src/voidcore_base.js", - "language": "javascript", - "size_bytes": 3969, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.971718781Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-architecture-demo.js", - "path": "./development/nyaflow/examples/unified-architecture-demo.js", - "language": "javascript", - "size_bytes": 5846, - "total_lines": 180, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:43.976202419Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "printCoreTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CMakeCCompilerId.c", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c", - "language": "c", - "size_bytes": 24853, - "total_lines": 803, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.008616915Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 771, - "line_end": 771, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CMakeCXXCompilerId.cpp", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "language": "cpp", - "size_bytes": 24597, - "total_lines": 791, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.014751181Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 791, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/benchmark.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 113, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.051944904Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/build_ai.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 112, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.057122549Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/build_all.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 113, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.061926872Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/build_human.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 115, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.067233267Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/nekocode_ai.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 118, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.076527287Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/nekocode_human.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 121, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.086515060Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/nekocode_static.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 122, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.096910021Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/run_tests.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 113, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.133773988Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/test_core.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 116, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.139714252Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/test_performance.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 123, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.148441128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/CMakeFiles/tree-sitter-core.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 123, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.161521699Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "adl_serializer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/adl_serializer.hpp", - "language": "cpp", - "size_bytes": 2279, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.189253186Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "byte_container_with_subtype.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/byte_container_with_subtype.hpp", - "language": "cpp", - "size_bytes": 3533, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.191172208Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abi_macros.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/abi_macros.hpp", - "language": "cpp", - "size_bytes": 3807, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.193702920Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "from_json.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/from_json.hpp", - "language": "cpp", - "size_bytes": 18880, - "total_lines": 497, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.198710293Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 380, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 399, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 417, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 437, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 471, - "line_end": 480, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_chars.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/to_chars.hpp", - "language": "cpp", - "size_bytes": 38503, - "total_lines": 1118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.203014544Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 1115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 486, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 581, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 820, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 879, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 919, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 967, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 1048, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 314, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_json.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/to_json.hpp", - "language": "cpp", - "size_bytes": 15749, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.207318131Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 288, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 301, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 344, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 357, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 363, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 376, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 392, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 406, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 219, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 422, - "line_end": 429, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exceptions.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/exceptions.hpp", - "language": "cpp", - "size_bytes": 9128, - "total_lines": 255, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.210410929Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_exception", - "name": "exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 217, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 234, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 251, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hash.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/hash.hpp", - "language": "cpp", - "size_bytes": 4016, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.213148338Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_reader.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/binary_reader.hpp", - "language": "cpp", - "size_bytes": 103174, - "total_lines": 3010, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.221410141Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 3009, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 384, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 898, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 994, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1102, - "line_end": 1132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1196, - "line_end": 1565, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1577, - "line_end": 1648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1660, - "line_end": 1765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1771, - "line_end": 1787, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1793, - "line_end": 1817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1830, - "line_end": 1833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1849, - "line_end": 1938, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1944, - "line_end": 1996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 2009, - "line_end": 2219, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 2232, - "line_end": 2293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 2299, - "line_end": 2477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 2482, - "line_end": 2585, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 2590, - "line_end": 2668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 2673, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 2752, - "line_end": 2756, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 2761, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 2788, - "line_end": 2814, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 2831, - "line_end": 2847, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 2864, - "line_end": 2880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 2887, - "line_end": 2896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 2901, - "line_end": 2906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 3002, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input_adapters.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/input_adapters.hpp", - "language": "cpp", - "size_bytes": 17372, - "total_lines": 494, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.226308318Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 305, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 410, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 426, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 436, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 460, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 475, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 482, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 354, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 367, - "line_end": 378, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 399, - "line_end": 399, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 402, - "line_end": 411, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 491, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_sax.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/json_sax.hpp", - "language": "cpp", - "size_bytes": 21370, - "total_lines": 728, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.230028579Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 365, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 366, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 367, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 368, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 369, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 531, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 709, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 345, - "line_end": 649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 652, - "line_end": 725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lexer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/lexer.hpp", - "language": "cpp", - "size_bytes": 54544, - "total_lines": 1632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.234951022Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 1311, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 838, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 909, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 927, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 1292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 1320, - "line_end": 1325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1364, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 1374, - "line_end": 1398, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 1401, - "line_end": 1404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1412, - "line_end": 1415, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1418, - "line_end": 1421, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1424, - "line_end": 1427, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 1440, - "line_end": 1443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1448, - "line_end": 1469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1472, - "line_end": 1476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 1486, - "line_end": 1498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 1500, - "line_end": 1507, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 1509, - "line_end": 1595, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 1310, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parser.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/parser.hpp", - "language": "cpp", - "size_bytes": 18722, - "total_lines": 507, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.238336321Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 506, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 504, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position_t.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/input/position_t.hpp", - "language": "cpp", - "size_bytes": 958, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.240198869Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_iterator.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/internal_iterator.hpp", - "language": "cpp", - "size_bytes": 1071, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.243011819Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iteration_proxy.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iteration_proxy.hpp", - "language": "cpp", - "size_bytes": 7962, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.245488986Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 168, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 154, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 187, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 223, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iterator_traits.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iterator_traits.hpp", - "language": "cpp", - "size_bytes": 1757, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.247471224Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iter_impl.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iter_impl.hpp", - "language": "cpp", - "size_bytes": 23906, - "total_lines": 751, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.250936176Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 318, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 273, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 234, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 552, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 616, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 638, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 716, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 732, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 235, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_reverse_iterator.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/json_reverse_iterator.hpp", - "language": "cpp", - "size_bytes": 3861, - "total_lines": 130, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.253560458Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "primitive_iterator.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/primitive_iterator.hpp", - "language": "cpp", - "size_bytes": 3227, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.255662638Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_pointer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/json_pointer.hpp", - "language": "cpp", - "size_bytes": 37067, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.260484641Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 520, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 857, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 865, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 935, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 953, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 960, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 969, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 978, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 985, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_ref.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/json_ref.hpp", - "language": "cpp", - "size_bytes": 1811, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.263235935Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_scope.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/macro_scope.hpp", - "language": "cpp", - "size_bytes": 42861, - "total_lines": 468, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.266232212Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 448, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_unscope.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/macro_unscope.hpp", - "language": "cpp", - "size_bytes": 1220, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.268195886Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "begin.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/call_std/begin.hpp", - "language": "cpp", - "size_bytes": 453, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.271747328Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "end.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/call_std/end.hpp", - "language": "cpp", - "size_bytes": 451, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.273303341Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_future.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/cpp_future.hpp", - "language": "cpp", - "size_bytes": 5178, - "total_lines": 171, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.275763451Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "detected.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/detected.hpp", - "language": "cpp", - "size_bytes": 2109, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.278011196Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "identity_tag.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/identity_tag.hpp", - "language": "cpp", - "size_bytes": 526, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.279626Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "is_sax.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/is_sax.hpp", - "language": "cpp", - "size_bytes": 6960, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.281856846Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "std_fs.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/std_fs.hpp", - "language": "cpp", - "size_bytes": 766, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.283635169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_traits.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/type_traits.hpp", - "language": "cpp", - "size_bytes": 28099, - "total_lines": 740, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.288036857Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 739, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 584, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 590, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 623, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 707, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 726, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 193, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 206, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 210, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 213, - "line_end": 214, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 218, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_24", - "name": "class_24", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_25", - "name": "class_25", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 241, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 311, - "line_end": 312, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_37", - "name": "class_37", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 348, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 355, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 375, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 390, - "line_end": 391, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 394, - "line_end": 394, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 401, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 404, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 439, - "line_end": 439, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 465, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 468, - "line_end": 474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 477, - "line_end": 478, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 481, - "line_end": 481, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 484, - "line_end": 484, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 487, - "line_end": 487, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 490, - "line_end": 490, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 493, - "line_end": 494, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 498, - "line_end": 498, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 501, - "line_end": 501, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 508, - "line_end": 508, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_62", - "name": "class_62", - "symbol_type": "Class", - "file_path": "", - "line_start": 511, - "line_end": 514, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 564, - "line_end": 577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 614, - "line_end": 614, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_66", - "name": "class_66", - "symbol_type": "Class", - "file_path": "", - "line_start": 617, - "line_end": 624, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_67", - "name": "class_67", - "symbol_type": "Class", - "file_path": "", - "line_start": 627, - "line_end": 634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 637, - "line_end": 644, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 648, - "line_end": 656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 661, - "line_end": 661, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_71", - "name": "class_71", - "symbol_type": "Class", - "file_path": "", - "line_start": 664, - "line_end": 670, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 673, - "line_end": 679, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 713, - "line_end": 713, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 735, - "line_end": 735, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "void_t.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/meta/void_t.hpp", - "language": "cpp", - "size_bytes": 597, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.290567601Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_writer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/output/binary_writer.hpp", - "language": "cpp", - "size_bytes": 69893, - "total_lines": 1838, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.300180376Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 1837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 987, - "line_end": 992, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1002, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 1015, - "line_end": 1024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 1029, - "line_end": 1032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1042, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 1047, - "line_end": 1060, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 1065, - "line_end": 1070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 1075, - "line_end": 1092, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 1097, - "line_end": 1102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1107, - "line_end": 1117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1122, - "line_end": 1125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1149, - "line_end": 1158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1164, - "line_end": 1204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1251, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1290, - "line_end": 1293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1304, - "line_end": 1307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1321, - "line_end": 1330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1335, - "line_end": 1417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1423, - "line_end": 1499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1504, - "line_end": 1603, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1608, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1610, - "line_end": 1613, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1618, - "line_end": 1725, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1745, - "line_end": 1759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1761, - "line_end": 1786, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1795, - "line_end": 1798, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1802, - "line_end": 1809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1813, - "line_end": 1816, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1824, - "line_end": 1827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 1835, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "output_adapters.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/output/output_adapters.hpp", - "language": "cpp", - "size_bytes": 4067, - "total_lines": 147, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.303904588Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 127, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 131, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 135, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "serializer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/output/serializer.hpp", - "language": "cpp", - "size_bytes": 39896, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.308786087Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 670, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 76, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 586, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 691, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 697, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 877, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 955, - "line_end": 959, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 587, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_concat.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/string_concat.hpp", - "language": "cpp", - "size_bytes": 6006, - "total_lines": 146, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.312541991Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 54, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_escape.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/string_escape.hpp", - "language": "cpp", - "size_bytes": 2168, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.314476080Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "value_t.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/detail/value_t.hpp", - "language": "cpp", - "size_bytes": 4326, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.316491242Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 104, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 193862, - "total_lines": 5214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.342450041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 651, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 391, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 443, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 445, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 447, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 449, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 451, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 522, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 525, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 528, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 531, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 534, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 537, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 540, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 546, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 549, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 650, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 688, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 958, - "line_end": 965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1020, - "line_end": 1120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1130, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1198, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1202, - "line_end": 1215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1219, - "line_end": 1236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 1240, - "line_end": 1244, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1281, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 1288, - "line_end": 1291, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 1302, - "line_end": 1305, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1316, - "line_end": 1319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 1323, - "line_end": 1326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1330, - "line_end": 1333, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 1344, - "line_end": 1347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1354, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1358, - "line_end": 1361, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1365, - "line_end": 1368, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 1372, - "line_end": 1375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1935, - "line_end": 1939, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1949, - "line_end": 1963, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1958, - "line_end": 1962, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1972, - "line_end": 1986, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1992, - "line_end": 2006, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2010, - "line_end": 2024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2030, - "line_end": 2044, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_66", - "name": "function_66", - "symbol_type": "Function", - "file_path": "", - "line_start": 2048, - "line_end": 2090, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_67", - "name": "function_67", - "symbol_type": "Function", - "file_path": "", - "line_start": 2094, - "line_end": 2103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_68", - "name": "function_68", - "symbol_type": "Function", - "file_path": "", - "line_start": 2107, - "line_end": 2125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_69", - "name": "function_69", - "symbol_type": "Function", - "file_path": "", - "line_start": 2129, - "line_end": 2140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_70", - "name": "function_70", - "symbol_type": "Function", - "file_path": "", - "line_start": 2145, - "line_end": 2148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_71", - "name": "function_71", - "symbol_type": "Function", - "file_path": "", - "line_start": 2151, - "line_end": 2154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_72", - "name": "function_72", - "symbol_type": "Function", - "file_path": "", - "line_start": 2160, - "line_end": 2178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_73", - "name": "function_73", - "symbol_type": "Function", - "file_path": "", - "line_start": 2184, - "line_end": 2195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2239, - "line_end": 2255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2265, - "line_end": 2281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2292, - "line_end": 2308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2315, - "line_end": 2329, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2325, - "line_end": 2328, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2340, - "line_end": 2354, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2350, - "line_end": 2353, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2364, - "line_end": 2367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2375, - "line_end": 2378, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2382, - "line_end": 2385, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2389, - "line_end": 2392, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2396, - "line_end": 2401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2405, - "line_end": 2410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2417, - "line_end": 2480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2487, - "line_end": 2553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2555, - "line_end": 2567, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2571, - "line_end": 2586, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2603, - "line_end": 2606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2610, - "line_end": 2626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2640, - "line_end": 2650, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2654, - "line_end": 2664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2670, - "line_end": 2680, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2686, - "line_end": 2696, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2700, - "line_end": 2704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2710, - "line_end": 2714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2718, - "line_end": 2721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2727, - "line_end": 2730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2734, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2741, - "line_end": 2744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2758, - "line_end": 2763, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2767, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2774, - "line_end": 2779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2783, - "line_end": 2788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2792, - "line_end": 2795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2799, - "line_end": 2804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2808, - "line_end": 2811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2815, - "line_end": 2818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2822, - "line_end": 2825, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2829, - "line_end": 2832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2836, - "line_end": 2839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2843, - "line_end": 2846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2855, - "line_end": 2858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2866, - "line_end": 2869, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2873, - "line_end": 2876, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2880, - "line_end": 2883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 2897, - "line_end": 2932, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2936, - "line_end": 2971, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2975, - "line_end": 3005, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 3019, - "line_end": 3076, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3080, - "line_end": 3101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 3105, - "line_end": 3109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3113, - "line_end": 3133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_126", - "name": "function_126", - "symbol_type": "Function", - "file_path": "", - "line_start": 3137, - "line_end": 3141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3145, - "line_end": 3164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_128", - "name": "function_128", - "symbol_type": "Function", - "file_path": "", - "line_start": 3168, - "line_end": 3172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3176, - "line_end": 3188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_130", - "name": "function_130", - "symbol_type": "Function", - "file_path": "", - "line_start": 3192, - "line_end": 3196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3201, - "line_end": 3221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 3226, - "line_end": 3252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 3258, - "line_end": 3273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3277, - "line_end": 3293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3297, - "line_end": 3300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3304, - "line_end": 3320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3324, - "line_end": 3351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3355, - "line_end": 3371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3375, - "line_end": 3396, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3400, - "line_end": 3403, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3407, - "line_end": 3450, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3454, - "line_end": 3467, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3471, - "line_end": 3479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3483, - "line_end": 3495, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3499, - "line_end": 3511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3515, - "line_end": 3527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3531, - "line_end": 3543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3547, - "line_end": 3559, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 3636, - "line_end": 3639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 3665, - "line_end": 3668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_151", - "name": "function_151", - "symbol_type": "Function", - "file_path": "", - "line_start": 3674, - "line_end": 3685, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_152", - "name": "function_152", - "symbol_type": "Function", - "file_path": "", - "line_start": 3691, - "line_end": 3694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_153", - "name": "function_153", - "symbol_type": "Function", - "file_path": "", - "line_start": 3698, - "line_end": 3705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_154", - "name": "function_154", - "symbol_type": "Function", - "file_path": "", - "line_start": 3709, - "line_end": 3718, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_155", - "name": "function_155", - "symbol_type": "Function", - "file_path": "", - "line_start": 3724, - "line_end": 3727, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_156", - "name": "function_156", - "symbol_type": "Function", - "file_path": "", - "line_start": 3736, - "line_end": 3743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_157", - "name": "function_157", - "symbol_type": "Function", - "file_path": "", - "line_start": 3749, - "line_end": 3752, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_158", - "name": "function_158", - "symbol_type": "Function", - "file_path": "", - "line_start": 3757, - "line_end": 3764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_159", - "name": "function_159", - "symbol_type": "Function", - "file_path": "", - "line_start": 3770, - "line_end": 3773, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_160", - "name": "function_160", - "symbol_type": "Function", - "file_path": "", - "line_start": 3778, - "line_end": 3788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_161", - "name": "function_161", - "symbol_type": "Function", - "file_path": "", - "line_start": 3794, - "line_end": 3797, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_162", - "name": "function_162", - "symbol_type": "Function", - "file_path": "", - "line_start": 3803, - "line_end": 3806, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_163", - "name": "function_163", - "symbol_type": "Function", - "file_path": "", - "line_start": 3810, - "line_end": 3817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_164", - "name": "function_164", - "symbol_type": "Function", - "file_path": "", - "line_start": 3823, - "line_end": 3826, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_165", - "name": "function_165", - "symbol_type": "Function", - "file_path": "", - "line_start": 3832, - "line_end": 3835, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_166", - "name": "function_166", - "symbol_type": "Function", - "file_path": "", - "line_start": 3839, - "line_end": 4935, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_167", - "name": "function_167", - "symbol_type": "Function", - "file_path": "", - "line_start": 3860, - "line_end": 3863, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_168", - "name": "function_168", - "symbol_type": "Function", - "file_path": "", - "line_start": 3867, - "line_end": 3874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_169", - "name": "function_169", - "symbol_type": "Function", - "file_path": "", - "line_start": 3880, - "line_end": 3883, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 3889, - "line_end": 3892, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 3896, - "line_end": 3904, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_172", - "name": "function_172", - "symbol_type": "Function", - "file_path": "", - "line_start": 3910, - "line_end": 3913, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_173", - "name": "function_173", - "symbol_type": "Function", - "file_path": "", - "line_start": 3919, - "line_end": 3922, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_174", - "name": "function_174", - "symbol_type": "Function", - "file_path": "", - "line_start": 3926, - "line_end": 3933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_175", - "name": "function_175", - "symbol_type": "Function", - "file_path": "", - "line_start": 3939, - "line_end": 3942, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 3948, - "line_end": 3951, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_177", - "name": "function_177", - "symbol_type": "Function", - "file_path": "", - "line_start": 3967, - "line_end": 3980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4007, - "line_end": 4016, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4021, - "line_end": 4031, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4043, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4048, - "line_end": 4052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4057, - "line_end": 4061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4065, - "line_end": 4069, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4075, - "line_end": 4084, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4090, - "line_end": 4099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4109, - "line_end": 4120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 4150, - "line_end": 4175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4213, - "line_end": 4216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4220, - "line_end": 4223, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4227, - "line_end": 4232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4236, - "line_end": 4239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4243, - "line_end": 4246, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4250, - "line_end": 4257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4261, - "line_end": 4265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4269, - "line_end": 4273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4288, - "line_end": 4292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4296, - "line_end": 4300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4309, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4320, - "line_end": 4323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4328, - "line_end": 4339, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4344, - "line_end": 4355, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4360, - "line_end": 4366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4371, - "line_end": 4382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4387, - "line_end": 4397, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4402, - "line_end": 4412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4417, - "line_end": 4422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4426, - "line_end": 4436, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4441, - "line_end": 4451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4456, - "line_end": 4466, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4471, - "line_end": 4476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4496, - "line_end": 4506, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4511, - "line_end": 4521, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4526, - "line_end": 4536, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4541, - "line_end": 4551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4556, - "line_end": 4561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_220", - "name": "function_220", - "symbol_type": "Function", - "file_path": "", - "line_start": 4587, - "line_end": 4590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_221", - "name": "function_221", - "symbol_type": "Function", - "file_path": "", - "line_start": 4594, - "line_end": 4597, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_222", - "name": "function_222", - "symbol_type": "Function", - "file_path": "", - "line_start": 4601, - "line_end": 4604, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_223", - "name": "function_223", - "symbol_type": "Function", - "file_path": "", - "line_start": 4608, - "line_end": 4611, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4615, - "line_end": 4618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4622, - "line_end": 4625, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4629, - "line_end": 4632, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4636, - "line_end": 4639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4643, - "line_end": 4648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4652, - "line_end": 4655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 4668, - "line_end": 4934, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 4948, - "line_end": 5079, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 5091, - "line_end": 5115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 5122, - "line_end": 5126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 5136, - "line_end": 5139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 5144, - "line_end": 5147, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5205, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 5162, - "line_end": 5169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 5165, - "line_end": 5168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 5179, - "line_end": 5187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 5195, - "line_end": 5201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 5173, - "line_end": 5188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 2469, - "total_lines": 74, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.348212565Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ordered_map.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/ordered_map.hpp", - "language": "cpp", - "size_bytes": 11447, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.351005464Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 50, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 52, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/thirdparty/hedley/hedley.hpp", - "language": "cpp", - "size_bytes": 86068, - "total_lines": 2045, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.357496446Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley_undef.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/include/nlohmann/thirdparty/hedley/hedley_undef.hpp", - "language": "cpp", - "size_bytes": 5500, - "total_lines": 158, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.360234097Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/single_include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 907858, - "total_lines": 24596, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.441009726Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 2824, - "line_end": 2920, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 2886, - "line_end": 2907, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2917, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 2921, - "line_end": 2995, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 2955, - "line_end": 2964, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2974, - "line_end": 2979, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2989, - "line_end": 2993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 3014, - "line_end": 3035, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 3029, - "line_end": 3032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 3060, - "line_end": 3211, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 3109, - "line_end": 3112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 3206, - "line_end": 3209, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 3250, - "line_end": 3293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 3420, - "line_end": 4135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3977, - "line_end": 3980, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3983, - "line_end": 3986, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 4015, - "line_end": 4019, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 4025, - "line_end": 4029, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4039, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 4046, - "line_end": 4051, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 4062, - "line_end": 4065, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 4071, - "line_end": 4074, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 4078, - "line_end": 4081, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 4094, - "line_end": 4103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4122, - "line_end": 4125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 4158, - "line_end": 4285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4162, - "line_end": 4165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4174, - "line_end": 4177, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4180, - "line_end": 4184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4187, - "line_end": 4190, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4193, - "line_end": 4194, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4240, - "line_end": 4244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4249, - "line_end": 4253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4259, - "line_end": 4263, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4270, - "line_end": 4274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4283, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 4286, - "line_end": 4518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4314, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 4316, - "line_end": 4319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 4321, - "line_end": 4324, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 4327, - "line_end": 4389, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4411, - "line_end": 4416, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4419, - "line_end": 4425, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 4439, - "line_end": 4440, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 4442, - "line_end": 4446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4455, - "line_end": 4459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 4462, - "line_end": 4464, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4473, - "line_end": 4477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4481, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4490, - "line_end": 4494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 4497, - "line_end": 4498, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4507, - "line_end": 4511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 4514, - "line_end": 4515, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 4519, - "line_end": 4546, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4569, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 4573, - "line_end": 4577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_65", - "name": "function_65", - "symbol_type": "Function", - "file_path": "", - "line_start": 4588, - "line_end": 4788, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4593, - "line_end": 4600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 4607, - "line_end": 4637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4640, - "line_end": 4647, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4650, - "line_end": 4657, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4666, - "line_end": 4674, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4677, - "line_end": 4680, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4683, - "line_end": 4686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4689, - "line_end": 4692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4697, - "line_end": 4702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4708, - "line_end": 4720, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4725, - "line_end": 4737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4740, - "line_end": 4747, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4750, - "line_end": 4753, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4756, - "line_end": 4764, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4794, - "line_end": 4809, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4819, - "line_end": 4830, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4833, - "line_end": 4837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4840, - "line_end": 4849, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4852, - "line_end": 4860, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4864, - "line_end": 4882, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4896, - "line_end": 4930, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 4933, - "line_end": 4936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4943, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4946, - "line_end": 4949, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4952, - "line_end": 4955, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4958, - "line_end": 4961, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4964, - "line_end": 4973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4978, - "line_end": 4993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4998, - "line_end": 5013, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5017, - "line_end": 5024, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_96", - "name": "function_96", - "symbol_type": "Function", - "file_path": "", - "line_start": 5030, - "line_end": 5035, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_97", - "name": "function_97", - "symbol_type": "Function", - "file_path": "", - "line_start": 5103, - "line_end": 5284, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 5108, - "line_end": 5113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5137, - "line_end": 5137, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5138, - "line_end": 5143, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5145, - "line_end": 5145, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_102", - "name": "function_102", - "symbol_type": "Function", - "file_path": "", - "line_start": 5146, - "line_end": 5146, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5148, - "line_end": 5150, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_104", - "name": "function_104", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5153, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_105", - "name": "function_105", - "symbol_type": "Function", - "file_path": "", - "line_start": 5154, - "line_end": 5154, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_106", - "name": "function_106", - "symbol_type": "Function", - "file_path": "", - "line_start": 5157, - "line_end": 5160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_107", - "name": "function_107", - "symbol_type": "Function", - "file_path": "", - "line_start": 5163, - "line_end": 5169, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_108", - "name": "function_108", - "symbol_type": "Function", - "file_path": "", - "line_start": 5171, - "line_end": 5177, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_109", - "name": "function_109", - "symbol_type": "Function", - "file_path": "", - "line_start": 5180, - "line_end": 5183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_110", - "name": "function_110", - "symbol_type": "Function", - "file_path": "", - "line_start": 5186, - "line_end": 5189, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_111", - "name": "function_111", - "symbol_type": "Function", - "file_path": "", - "line_start": 5192, - "line_end": 5225, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_112", - "name": "function_112", - "symbol_type": "Function", - "file_path": "", - "line_start": 5228, - "line_end": 5231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5242, - "line_end": 5242, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5245, - "line_end": 5246, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5248, - "line_end": 5248, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_116", - "name": "function_116", - "symbol_type": "Function", - "file_path": "", - "line_start": 5249, - "line_end": 5249, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5250, - "line_end": 5250, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_118", - "name": "function_118", - "symbol_type": "Function", - "file_path": "", - "line_start": 5251, - "line_end": 5251, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_119", - "name": "function_119", - "symbol_type": "Function", - "file_path": "", - "line_start": 5252, - "line_end": 5252, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_120", - "name": "function_120", - "symbol_type": "Function", - "file_path": "", - "line_start": 5255, - "line_end": 5258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_121", - "name": "function_121", - "symbol_type": "Function", - "file_path": "", - "line_start": 5261, - "line_end": 5264, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5271, - "line_end": 5274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5279, - "line_end": 5282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 5285, - "line_end": 5315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_125", - "name": "function_125", - "symbol_type": "Function", - "file_path": "", - "line_start": 5333, - "line_end": 5737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5354, - "line_end": 5360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5367, - "line_end": 5373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5376, - "line_end": 5382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5387, - "line_end": 5393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5400, - "line_end": 5406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5409, - "line_end": 5415, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5422, - "line_end": 5428, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5435, - "line_end": 5441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5448, - "line_end": 5454, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5461, - "line_end": 5468, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5471, - "line_end": 5478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5483, - "line_end": 5493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5496, - "line_end": 5508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5512, - "line_end": 5524, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5531, - "line_end": 5538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5541, - "line_end": 5548, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5552, - "line_end": 5562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5571, - "line_end": 5574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5584, - "line_end": 5587, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5591, - "line_end": 5594, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5597, - "line_end": 5600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5604, - "line_end": 5607, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5611, - "line_end": 5614, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5618, - "line_end": 5621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5626, - "line_end": 5630, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5634, - "line_end": 5637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5647, - "line_end": 5650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5653, - "line_end": 5656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5660, - "line_end": 5663, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5666, - "line_end": 5669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5673, - "line_end": 5676, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5679, - "line_end": 5682, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5689, - "line_end": 5692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5695, - "line_end": 5698, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5703, - "line_end": 5706, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5709, - "line_end": 5712, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5715, - "line_end": 5718, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5722, - "line_end": 5725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5776, - "line_end": 5781, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5826, - "line_end": 5828, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5831, - "line_end": 5833, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5836, - "line_end": 5838, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5841, - "line_end": 5845, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5848, - "line_end": 5852, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 5854, - "line_end": 5858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 5860, - "line_end": 5863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5867, - "line_end": 5871, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5875, - "line_end": 5878, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5882, - "line_end": 5885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5889, - "line_end": 5893, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 5928, - "line_end": 6038, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 5933, - "line_end": 5937, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 5951, - "line_end": 6036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_179", - "name": "function_179", - "symbol_type": "Function", - "file_path": "", - "line_start": 6098, - "line_end": 6562, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6120, - "line_end": 6124, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6127, - "line_end": 6127, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6128, - "line_end": 6128, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 6133, - "line_end": 6136, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_184", - "name": "function_184", - "symbol_type": "Function", - "file_path": "", - "line_start": 6158, - "line_end": 6166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6168, - "line_end": 6170, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6173, - "line_end": 6173, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 6174, - "line_end": 6174, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_188", - "name": "function_188", - "symbol_type": "Function", - "file_path": "", - "line_start": 6175, - "line_end": 6175, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6177, - "line_end": 6182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_190", - "name": "function_190", - "symbol_type": "Function", - "file_path": "", - "line_start": 6187, - "line_end": 6196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6213, - "line_end": 6215, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_192", - "name": "function_192", - "symbol_type": "Function", - "file_path": "", - "line_start": 6217, - "line_end": 6227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_193", - "name": "function_193", - "symbol_type": "Function", - "file_path": "", - "line_start": 6236, - "line_end": 6239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_194", - "name": "function_194", - "symbol_type": "Function", - "file_path": "", - "line_start": 6250, - "line_end": 6301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_195", - "name": "function_195", - "symbol_type": "Function", - "file_path": "", - "line_start": 6308, - "line_end": 6363, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6373, - "line_end": 6374, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_197", - "name": "function_197", - "symbol_type": "Function", - "file_path": "", - "line_start": 6376, - "line_end": 6391, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6397, - "line_end": 6400, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_199", - "name": "function_199", - "symbol_type": "Function", - "file_path": "", - "line_start": 6419, - "line_end": 6422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_200", - "name": "function_200", - "symbol_type": "Function", - "file_path": "", - "line_start": 6443, - "line_end": 6446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6451, - "line_end": 6455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_202", - "name": "function_202", - "symbol_type": "Function", - "file_path": "", - "line_start": 6476, - "line_end": 6479, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6485, - "line_end": 6488, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6492, - "line_end": 6495, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6497, - "line_end": 6500, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6502, - "line_end": 6505, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6518, - "line_end": 6523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6526, - "line_end": 6529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6543, - "line_end": 6544, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6550, - "line_end": 6551, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_211", - "name": "function_211", - "symbol_type": "Function", - "file_path": "", - "line_start": 6553, - "line_end": 6556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6744, - "line_end": 6746, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6749, - "line_end": 6749, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6750, - "line_end": 6750, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_215", - "name": "function_215", - "symbol_type": "Function", - "file_path": "", - "line_start": 6753, - "line_end": 6753, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 6755, - "line_end": 6759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 6761, - "line_end": 6765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6767, - "line_end": 6771, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 6773, - "line_end": 6777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 6779, - "line_end": 6783, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 6785, - "line_end": 6789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 6791, - "line_end": 6795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6797, - "line_end": 6807, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 6809, - "line_end": 6817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6819, - "line_end": 6827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6829, - "line_end": 6839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6841, - "line_end": 6849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 6852, - "line_end": 6862, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 6864, - "line_end": 6867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6924, - "line_end": 6930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6933, - "line_end": 6933, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6934, - "line_end": 6934, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_233", - "name": "function_233", - "symbol_type": "Function", - "file_path": "", - "line_start": 6935, - "line_end": 6935, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 6936, - "line_end": 6936, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 6937, - "line_end": 6937, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 6939, - "line_end": 6943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 6945, - "line_end": 6949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 6951, - "line_end": 6955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 6957, - "line_end": 6961, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 6963, - "line_end": 6967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_241", - "name": "function_241", - "symbol_type": "Function", - "file_path": "", - "line_start": 6969, - "line_end": 6973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_242", - "name": "function_242", - "symbol_type": "Function", - "file_path": "", - "line_start": 6975, - "line_end": 6979, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_243", - "name": "function_243", - "symbol_type": "Function", - "file_path": "", - "line_start": 6981, - "line_end": 6997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_244", - "name": "function_244", - "symbol_type": "Function", - "file_path": "", - "line_start": 6999, - "line_end": 7014, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_245", - "name": "function_245", - "symbol_type": "Function", - "file_path": "", - "line_start": 7016, - "line_end": 7050, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_246", - "name": "function_246", - "symbol_type": "Function", - "file_path": "", - "line_start": 7052, - "line_end": 7067, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_247", - "name": "function_247", - "symbol_type": "Function", - "file_path": "", - "line_start": 7069, - "line_end": 7099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 7102, - "line_end": 7112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_249", - "name": "function_249", - "symbol_type": "Function", - "file_path": "", - "line_start": 7114, - "line_end": 7117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 7136, - "line_end": 7197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_251", - "name": "function_251", - "symbol_type": "Function", - "file_path": "", - "line_start": 7229, - "line_end": 7232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_252", - "name": "function_252", - "symbol_type": "Function", - "file_path": "", - "line_start": 7234, - "line_end": 7237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_253", - "name": "function_253", - "symbol_type": "Function", - "file_path": "", - "line_start": 7239, - "line_end": 7242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_254", - "name": "function_254", - "symbol_type": "Function", - "file_path": "", - "line_start": 7244, - "line_end": 7247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_255", - "name": "function_255", - "symbol_type": "Function", - "file_path": "", - "line_start": 7249, - "line_end": 7252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_256", - "name": "function_256", - "symbol_type": "Function", - "file_path": "", - "line_start": 7254, - "line_end": 7257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_257", - "name": "function_257", - "symbol_type": "Function", - "file_path": "", - "line_start": 7259, - "line_end": 7262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_258", - "name": "function_258", - "symbol_type": "Function", - "file_path": "", - "line_start": 7264, - "line_end": 7267, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_259", - "name": "function_259", - "symbol_type": "Function", - "file_path": "", - "line_start": 7269, - "line_end": 7272, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_260", - "name": "function_260", - "symbol_type": "Function", - "file_path": "", - "line_start": 7274, - "line_end": 7277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_261", - "name": "function_261", - "symbol_type": "Function", - "file_path": "", - "line_start": 7279, - "line_end": 7282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_262", - "name": "function_262", - "symbol_type": "Function", - "file_path": "", - "line_start": 7284, - "line_end": 7287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_263", - "name": "function_263", - "symbol_type": "Function", - "file_path": "", - "line_start": 7289, - "line_end": 7292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_264", - "name": "function_264", - "symbol_type": "Function", - "file_path": "", - "line_start": 7326, - "line_end": 8612, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_265", - "name": "function_265", - "symbol_type": "Function", - "file_path": "", - "line_start": 7363, - "line_end": 7404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7424, - "line_end": 7428, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7431, - "line_end": 7431, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7432, - "line_end": 7432, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_269", - "name": "function_269", - "symbol_type": "Function", - "file_path": "", - "line_start": 7433, - "line_end": 7433, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_270", - "name": "function_270", - "symbol_type": "Function", - "file_path": "", - "line_start": 7434, - "line_end": 7434, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_271", - "name": "function_271", - "symbol_type": "Function", - "file_path": "", - "line_start": 7435, - "line_end": 7435, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_272", - "name": "function_272", - "symbol_type": "Function", - "file_path": "", - "line_start": 7443, - "line_end": 7449, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_273", - "name": "function_273", - "symbol_type": "Function", - "file_path": "", - "line_start": 7470, - "line_end": 7501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_274", - "name": "function_274", - "symbol_type": "Function", - "file_path": "", - "line_start": 7518, - "line_end": 7538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_275", - "name": "function_275", - "symbol_type": "Function", - "file_path": "", - "line_start": 7555, - "line_end": 8139, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_276", - "name": "function_276", - "symbol_type": "Function", - "file_path": "", - "line_start": 8145, - "line_end": 8210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_277", - "name": "function_277", - "symbol_type": "Function", - "file_path": "", - "line_start": 8213, - "line_end": 8216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_278", - "name": "function_278", - "symbol_type": "Function", - "file_path": "", - "line_start": 8219, - "line_end": 8222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_279", - "name": "function_279", - "symbol_type": "Function", - "file_path": "", - "line_start": 8225, - "line_end": 8228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_280", - "name": "function_280", - "symbol_type": "Function", - "file_path": "", - "line_start": 8270, - "line_end": 8593, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 8621, - "line_end": 8626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 8638, - "line_end": 8665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 8675, - "line_end": 8699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 8702, - "line_end": 8705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_285", - "name": "function_285", - "symbol_type": "Function", - "file_path": "", - "line_start": 8713, - "line_end": 8716, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 8719, - "line_end": 8722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 8725, - "line_end": 8728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_288", - "name": "function_288", - "symbol_type": "Function", - "file_path": "", - "line_start": 8731, - "line_end": 8734, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 8741, - "line_end": 8744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 8749, - "line_end": 8770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_291", - "name": "function_291", - "symbol_type": "Function", - "file_path": "", - "line_start": 8773, - "line_end": 8777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 8787, - "line_end": 8799, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 8801, - "line_end": 8808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 8810, - "line_end": 8896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_295", - "name": "function_295", - "symbol_type": "Function", - "file_path": "", - "line_start": 8959, - "line_end": 9098, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_296", - "name": "function_296", - "symbol_type": "Function", - "file_path": "", - "line_start": 9099, - "line_end": 12083, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 9127, - "line_end": 9130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9158, - "line_end": 9161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9164, - "line_end": 9164, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9165, - "line_end": 9165, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_301", - "name": "function_301", - "symbol_type": "Function", - "file_path": "", - "line_start": 9166, - "line_end": 9166, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_302", - "name": "function_302", - "symbol_type": "Function", - "file_path": "", - "line_start": 9167, - "line_end": 9167, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_303", - "name": "function_303", - "symbol_type": "Function", - "file_path": "", - "line_start": 9168, - "line_end": 9168, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_304", - "name": "function_304", - "symbol_type": "Function", - "file_path": "", - "line_start": 9178, - "line_end": 9231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_305", - "name": "function_305", - "symbol_type": "Function", - "file_path": "", - "line_start": 9242, - "line_end": 9258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_306", - "name": "function_306", - "symbol_type": "Function", - "file_path": "", - "line_start": 9267, - "line_end": 9283, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 9297, - "line_end": 9307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 9319, - "line_end": 9334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_309", - "name": "function_309", - "symbol_type": "Function", - "file_path": "", - "line_start": 9346, - "line_end": 9412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_310", - "name": "function_310", - "symbol_type": "Function", - "file_path": "", - "line_start": 9426, - "line_end": 9458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_311", - "name": "function_311", - "symbol_type": "Function", - "file_path": "", - "line_start": 9464, - "line_end": 9480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_312", - "name": "function_312", - "symbol_type": "Function", - "file_path": "", - "line_start": 9494, - "line_end": 9972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_313", - "name": "function_313", - "symbol_type": "Function", - "file_path": "", - "line_start": 9985, - "line_end": 10068, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_314", - "name": "function_314", - "symbol_type": "Function", - "file_path": "", - "line_start": 10081, - "line_end": 10168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_315", - "name": "function_315", - "symbol_type": "Function", - "file_path": "", - "line_start": 10176, - "line_end": 10206, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_316", - "name": "function_316", - "symbol_type": "Function", - "file_path": "", - "line_start": 10214, - "line_end": 10261, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_317", - "name": "function_317", - "symbol_type": "Function", - "file_path": "", - "line_start": 10270, - "line_end": 10639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_318", - "name": "function_318", - "symbol_type": "Function", - "file_path": "", - "line_start": 10651, - "line_end": 10722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_319", - "name": "function_319", - "symbol_type": "Function", - "file_path": "", - "line_start": 10734, - "line_end": 10839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_320", - "name": "function_320", - "symbol_type": "Function", - "file_path": "", - "line_start": 10845, - "line_end": 10861, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_321", - "name": "function_321", - "symbol_type": "Function", - "file_path": "", - "line_start": 10867, - "line_end": 10891, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_322", - "name": "function_322", - "symbol_type": "Function", - "file_path": "", - "line_start": 10904, - "line_end": 10907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_323", - "name": "function_323", - "symbol_type": "Function", - "file_path": "", - "line_start": 10923, - "line_end": 11012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_324", - "name": "function_324", - "symbol_type": "Function", - "file_path": "", - "line_start": 11018, - "line_end": 11070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_325", - "name": "function_325", - "symbol_type": "Function", - "file_path": "", - "line_start": 11083, - "line_end": 11293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_326", - "name": "function_326", - "symbol_type": "Function", - "file_path": "", - "line_start": 11306, - "line_end": 11367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_327", - "name": "function_327", - "symbol_type": "Function", - "file_path": "", - "line_start": 11373, - "line_end": 11551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_328", - "name": "function_328", - "symbol_type": "Function", - "file_path": "", - "line_start": 11556, - "line_end": 11659, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_329", - "name": "function_329", - "symbol_type": "Function", - "file_path": "", - "line_start": 11664, - "line_end": 11742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_330", - "name": "function_330", - "symbol_type": "Function", - "file_path": "", - "line_start": 11747, - "line_end": 11811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_331", - "name": "function_331", - "symbol_type": "Function", - "file_path": "", - "line_start": 11826, - "line_end": 11830, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_332", - "name": "function_332", - "symbol_type": "Function", - "file_path": "", - "line_start": 11835, - "line_end": 11844, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 11862, - "line_end": 11888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 11905, - "line_end": 11921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 11938, - "line_end": 11954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_336", - "name": "function_336", - "symbol_type": "Function", - "file_path": "", - "line_start": 11961, - "line_end": 11970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_337", - "name": "function_337", - "symbol_type": "Function", - "file_path": "", - "line_start": 11975, - "line_end": 11980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_338", - "name": "function_338", - "symbol_type": "Function", - "file_path": "", - "line_start": 11988, - "line_end": 12022, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_339", - "name": "function_339", - "symbol_type": "Function", - "file_path": "", - "line_start": 12125, - "line_end": 12604, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 12169, - "line_end": 12179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_341", - "name": "function_341", - "symbol_type": "Function", - "file_path": "", - "line_start": 12191, - "line_end": 12243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_342", - "name": "function_342", - "symbol_type": "Function", - "file_path": "", - "line_start": 12251, - "line_end": 12255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_343", - "name": "function_343", - "symbol_type": "Function", - "file_path": "", - "line_start": 12258, - "line_end": 12273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_344", - "name": "function_344", - "symbol_type": "Function", - "file_path": "", - "line_start": 12277, - "line_end": 12556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_345", - "name": "function_345", - "symbol_type": "Function", - "file_path": "", - "line_start": 12559, - "line_end": 12562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_346", - "name": "function_346", - "symbol_type": "Function", - "file_path": "", - "line_start": 12564, - "line_end": 12591, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_347", - "name": "function_347", - "symbol_type": "Function", - "file_path": "", - "line_start": 12637, - "line_end": 12752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_348", - "name": "function_348", - "symbol_type": "Function", - "file_path": "", - "line_start": 12662, - "line_end": 12665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_349", - "name": "function_349", - "symbol_type": "Function", - "file_path": "", - "line_start": 12668, - "line_end": 12671, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_350", - "name": "function_350", - "symbol_type": "Function", - "file_path": "", - "line_start": 12674, - "line_end": 12677, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_351", - "name": "function_351", - "symbol_type": "Function", - "file_path": "", - "line_start": 12680, - "line_end": 12683, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_352", - "name": "function_352", - "symbol_type": "Function", - "file_path": "", - "line_start": 12686, - "line_end": 12689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_353", - "name": "function_353", - "symbol_type": "Function", - "file_path": "", - "line_start": 12691, - "line_end": 12694, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_354", - "name": "function_354", - "symbol_type": "Function", - "file_path": "", - "line_start": 12696, - "line_end": 12699, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_355", - "name": "function_355", - "symbol_type": "Function", - "file_path": "", - "line_start": 12701, - "line_end": 12706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_356", - "name": "function_356", - "symbol_type": "Function", - "file_path": "", - "line_start": 12708, - "line_end": 12711, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_357", - "name": "function_357", - "symbol_type": "Function", - "file_path": "", - "line_start": 12713, - "line_end": 12717, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_358", - "name": "function_358", - "symbol_type": "Function", - "file_path": "", - "line_start": 12719, - "line_end": 12724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_359", - "name": "function_359", - "symbol_type": "Function", - "file_path": "", - "line_start": 12726, - "line_end": 12730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_360", - "name": "function_360", - "symbol_type": "Function", - "file_path": "", - "line_start": 12732, - "line_end": 12737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_361", - "name": "function_361", - "symbol_type": "Function", - "file_path": "", - "line_start": 12739, - "line_end": 12743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_362", - "name": "function_362", - "symbol_type": "Function", - "file_path": "", - "line_start": 12745, - "line_end": 12749, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_363", - "name": "function_363", - "symbol_type": "Function", - "file_path": "", - "line_start": 12753, - "line_end": 12776, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_364", - "name": "function_364", - "symbol_type": "Function", - "file_path": "", - "line_start": 12808, - "line_end": 13104, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 12833, - "line_end": 13059, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12875, - "line_end": 12875, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_367", - "name": "function_367", - "symbol_type": "Function", - "file_path": "", - "line_start": 12876, - "line_end": 12876, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12877, - "line_end": 12877, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_369", - "name": "function_369", - "symbol_type": "Function", - "file_path": "", - "line_start": 12878, - "line_end": 12878, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12886, - "line_end": 12918, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12936, - "line_end": 12938, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_372", - "name": "function_372", - "symbol_type": "Function", - "file_path": "", - "line_start": 12946, - "line_end": 12954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12961, - "line_end": 12963, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_374", - "name": "function_374", - "symbol_type": "Function", - "file_path": "", - "line_start": 12971, - "line_end": 12976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_375", - "name": "function_375", - "symbol_type": "Function", - "file_path": "", - "line_start": 12987, - "line_end": 13020, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_376", - "name": "function_376", - "symbol_type": "Function", - "file_path": "", - "line_start": 13110, - "line_end": 13146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_377", - "name": "function_377", - "symbol_type": "Function", - "file_path": "", - "line_start": 13152, - "line_end": 13157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_378", - "name": "function_378", - "symbol_type": "Function", - "file_path": "", - "line_start": 13163, - "line_end": 13197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_379", - "name": "function_379", - "symbol_type": "Function", - "file_path": "", - "line_start": 13203, - "line_end": 13208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_380", - "name": "function_380", - "symbol_type": "Function", - "file_path": "", - "line_start": 13214, - "line_end": 13248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_381", - "name": "function_381", - "symbol_type": "Function", - "file_path": "", - "line_start": 13255, - "line_end": 13284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_382", - "name": "function_382", - "symbol_type": "Function", - "file_path": "", - "line_start": 13291, - "line_end": 13294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_383", - "name": "function_383", - "symbol_type": "Function", - "file_path": "", - "line_start": 13300, - "line_end": 13329, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_384", - "name": "function_384", - "symbol_type": "Function", - "file_path": "", - "line_start": 13335, - "line_end": 13338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_385", - "name": "function_385", - "symbol_type": "Function", - "file_path": "", - "line_start": 13344, - "line_end": 13347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_386", - "name": "function_386", - "symbol_type": "Function", - "file_path": "", - "line_start": 13353, - "line_end": 13356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_387", - "name": "function_387", - "symbol_type": "Function", - "file_path": "", - "line_start": 13362, - "line_end": 13393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_388", - "name": "function_388", - "symbol_type": "Function", - "file_path": "", - "line_start": 13399, - "line_end": 13402, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_389", - "name": "function_389", - "symbol_type": "Function", - "file_path": "", - "line_start": 13408, - "line_end": 13413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_390", - "name": "function_390", - "symbol_type": "Function", - "file_path": "", - "line_start": 13419, - "line_end": 13424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_391", - "name": "function_391", - "symbol_type": "Function", - "file_path": "", - "line_start": 13430, - "line_end": 13435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_392", - "name": "function_392", - "symbol_type": "Function", - "file_path": "", - "line_start": 13441, - "line_end": 13464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_393", - "name": "function_393", - "symbol_type": "Function", - "file_path": "", - "line_start": 13470, - "line_end": 13502, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_394", - "name": "function_394", - "symbol_type": "Function", - "file_path": "", - "line_start": 13508, - "line_end": 13518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 13524, - "line_end": 13527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_396", - "name": "function_396", - "symbol_type": "Function", - "file_path": "", - "line_start": 13559, - "line_end": 13671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13596, - "line_end": 13597, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13600, - "line_end": 13600, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_399", - "name": "function_399", - "symbol_type": "Function", - "file_path": "", - "line_start": 13603, - "line_end": 13606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_400", - "name": "function_400", - "symbol_type": "Function", - "file_path": "", - "line_start": 13609, - "line_end": 13612, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_401", - "name": "function_401", - "symbol_type": "Function", - "file_path": "", - "line_start": 13615, - "line_end": 13618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_402", - "name": "function_402", - "symbol_type": "Function", - "file_path": "", - "line_start": 13621, - "line_end": 13624, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_403", - "name": "function_403", - "symbol_type": "Function", - "file_path": "", - "line_start": 13627, - "line_end": 13630, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_404", - "name": "function_404", - "symbol_type": "Function", - "file_path": "", - "line_start": 13633, - "line_end": 13636, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_405", - "name": "function_405", - "symbol_type": "Function", - "file_path": "", - "line_start": 13639, - "line_end": 13642, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_406", - "name": "function_406", - "symbol_type": "Function", - "file_path": "", - "line_start": 13645, - "line_end": 13648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_407", - "name": "function_407", - "symbol_type": "Function", - "file_path": "", - "line_start": 13651, - "line_end": 13654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_408", - "name": "function_408", - "symbol_type": "Function", - "file_path": "", - "line_start": 13657, - "line_end": 13661, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_409", - "name": "function_409", - "symbol_type": "Function", - "file_path": "", - "line_start": 13664, - "line_end": 13668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_410", - "name": "function_410", - "symbol_type": "Function", - "file_path": "", - "line_start": 13711, - "line_end": 13729, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_411", - "name": "function_411", - "symbol_type": "Function", - "file_path": "", - "line_start": 13731, - "line_end": 13735, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13743, - "line_end": 13745, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 13749, - "line_end": 13757, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_414", - "name": "function_414", - "symbol_type": "Function", - "file_path": "", - "line_start": 13762, - "line_end": 13765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_415", - "name": "function_415", - "symbol_type": "Function", - "file_path": "", - "line_start": 13770, - "line_end": 13774, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_416", - "name": "function_416", - "symbol_type": "Function", - "file_path": "", - "line_start": 13779, - "line_end": 13785, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_417", - "name": "function_417", - "symbol_type": "Function", - "file_path": "", - "line_start": 13789, - "line_end": 13793, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_418", - "name": "function_418", - "symbol_type": "Function", - "file_path": "", - "line_start": 13797, - "line_end": 13800, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_419", - "name": "function_419", - "symbol_type": "Function", - "file_path": "", - "line_start": 13804, - "line_end": 13808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_420", - "name": "function_420", - "symbol_type": "Function", - "file_path": "", - "line_start": 13812, - "line_end": 13815, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_421", - "name": "function_421", - "symbol_type": "Function", - "file_path": "", - "line_start": 13819, - "line_end": 13822, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13826, - "line_end": 13836, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13840, - "line_end": 13848, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_424", - "name": "function_424", - "symbol_type": "Function", - "file_path": "", - "line_start": 13852, - "line_end": 13860, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13864, - "line_end": 13867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13871, - "line_end": 13874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 13878, - "line_end": 13881, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_428", - "name": "function_428", - "symbol_type": "Function", - "file_path": "", - "line_start": 13955, - "line_end": 14013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_429", - "name": "function_429", - "symbol_type": "Function", - "file_path": "", - "line_start": 14035, - "line_end": 14094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_430", - "name": "function_430", - "symbol_type": "Function", - "file_path": "", - "line_start": 14103, - "line_end": 14145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_431", - "name": "function_431", - "symbol_type": "Function", - "file_path": "", - "line_start": 14161, - "line_end": 14201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_432", - "name": "function_432", - "symbol_type": "Function", - "file_path": "", - "line_start": 14210, - "line_end": 14252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 14259, - "line_end": 14336, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 14347, - "line_end": 14405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_435", - "name": "function_435", - "symbol_type": "Function", - "file_path": "", - "line_start": 14535, - "line_end": 14538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_436", - "name": "function_436", - "symbol_type": "Function", - "file_path": "", - "line_start": 14543, - "line_end": 14546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_437", - "name": "function_437", - "symbol_type": "Function", - "file_path": "", - "line_start": 14550, - "line_end": 14553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_438", - "name": "function_438", - "symbol_type": "Function", - "file_path": "", - "line_start": 14612, - "line_end": 14616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_439", - "name": "function_439", - "symbol_type": "Function", - "file_path": "", - "line_start": 14621, - "line_end": 14625, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_440", - "name": "function_440", - "symbol_type": "Function", - "file_path": "", - "line_start": 14630, - "line_end": 14634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_441", - "name": "function_441", - "symbol_type": "Function", - "file_path": "", - "line_start": 14637, - "line_end": 14641, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_442", - "name": "function_442", - "symbol_type": "Function", - "file_path": "", - "line_start": 14646, - "line_end": 14650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_443", - "name": "function_443", - "symbol_type": "Function", - "file_path": "", - "line_start": 14655, - "line_end": 14659, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_444", - "name": "function_444", - "symbol_type": "Function", - "file_path": "", - "line_start": 14662, - "line_end": 14666, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_445", - "name": "function_445", - "symbol_type": "Function", - "file_path": "", - "line_start": 14690, - "line_end": 14750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14700, - "line_end": 14702, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14704, - "line_end": 14706, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14708, - "line_end": 14710, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14715, - "line_end": 14717, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14720, - "line_end": 14720, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14721, - "line_end": 14721, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_452", - "name": "function_452", - "symbol_type": "Function", - "file_path": "", - "line_start": 14722, - "line_end": 14722, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_453", - "name": "function_453", - "symbol_type": "Function", - "file_path": "", - "line_start": 14723, - "line_end": 14723, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_454", - "name": "function_454", - "symbol_type": "Function", - "file_path": "", - "line_start": 14724, - "line_end": 14724, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_455", - "name": "function_455", - "symbol_type": "Function", - "file_path": "", - "line_start": 14726, - "line_end": 14733, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_456", - "name": "function_456", - "symbol_type": "Function", - "file_path": "", - "line_start": 14735, - "line_end": 14738, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_457", - "name": "function_457", - "symbol_type": "Function", - "file_path": "", - "line_start": 14740, - "line_end": 14743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_458", - "name": "function_458", - "symbol_type": "Function", - "file_path": "", - "line_start": 14815, - "line_end": 14936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_459", - "name": "function_459", - "symbol_type": "Function", - "file_path": "", - "line_start": 14824, - "line_end": 14824, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14826, - "line_end": 14826, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14827, - "line_end": 14827, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14828, - "line_end": 14828, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_463", - "name": "function_463", - "symbol_type": "Function", - "file_path": "", - "line_start": 14829, - "line_end": 14829, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_464", - "name": "function_464", - "symbol_type": "Function", - "file_path": "", - "line_start": 14830, - "line_end": 14830, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14842, - "line_end": 14844, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_466", - "name": "function_466", - "symbol_type": "Function", - "file_path": "", - "line_start": 14846, - "line_end": 14849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_467", - "name": "function_467", - "symbol_type": "Function", - "file_path": "", - "line_start": 14851, - "line_end": 14855, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14867, - "line_end": 14869, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_469", - "name": "function_469", - "symbol_type": "Function", - "file_path": "", - "line_start": 14871, - "line_end": 14874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_470", - "name": "function_470", - "symbol_type": "Function", - "file_path": "", - "line_start": 14876, - "line_end": 14880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14892, - "line_end": 14894, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_472", - "name": "function_472", - "symbol_type": "Function", - "file_path": "", - "line_start": 14896, - "line_end": 14899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_473", - "name": "function_473", - "symbol_type": "Function", - "file_path": "", - "line_start": 14901, - "line_end": 14905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14916, - "line_end": 14917, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14920, - "line_end": 14921, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14924, - "line_end": 14925, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_477", - "name": "function_477", - "symbol_type": "Function", - "file_path": "", - "line_start": 14927, - "line_end": 14930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_478", - "name": "function_478", - "symbol_type": "Function", - "file_path": "", - "line_start": 14937, - "line_end": 16752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 14966, - "line_end": 14969, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_480", - "name": "function_480", - "symbol_type": "Function", - "file_path": "", - "line_start": 14975, - "line_end": 14999, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_481", - "name": "function_481", - "symbol_type": "Function", - "file_path": "", - "line_start": 15004, - "line_end": 15323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_482", - "name": "function_482", - "symbol_type": "Function", - "file_path": "", - "line_start": 15328, - "line_end": 15645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_483", - "name": "function_483", - "symbol_type": "Function", - "file_path": "", - "line_start": 15654, - "line_end": 15864, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_484", - "name": "function_484", - "symbol_type": "Function", - "file_path": "", - "line_start": 15875, - "line_end": 15885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_485", - "name": "function_485", - "symbol_type": "Function", - "file_path": "", - "line_start": 15890, - "line_end": 15897, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_486", - "name": "function_486", - "symbol_type": "Function", - "file_path": "", - "line_start": 15902, - "line_end": 15907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_487", - "name": "function_487", - "symbol_type": "Function", - "file_path": "", - "line_start": 15912, - "line_end": 15917, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_488", - "name": "function_488", - "symbol_type": "Function", - "file_path": "", - "line_start": 15922, - "line_end": 15925, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_489", - "name": "function_489", - "symbol_type": "Function", - "file_path": "", - "line_start": 15930, - "line_end": 15939, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_490", - "name": "function_490", - "symbol_type": "Function", - "file_path": "", - "line_start": 15944, - "line_end": 15947, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_491", - "name": "function_491", - "symbol_type": "Function", - "file_path": "", - "line_start": 15952, - "line_end": 15957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_492", - "name": "function_492", - "symbol_type": "Function", - "file_path": "", - "line_start": 15962, - "line_end": 15975, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_493", - "name": "function_493", - "symbol_type": "Function", - "file_path": "", - "line_start": 15980, - "line_end": 15985, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_494", - "name": "function_494", - "symbol_type": "Function", - "file_path": "", - "line_start": 15990, - "line_end": 16007, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_495", - "name": "function_495", - "symbol_type": "Function", - "file_path": "", - "line_start": 16012, - "line_end": 16017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_496", - "name": "function_496", - "symbol_type": "Function", - "file_path": "", - "line_start": 16022, - "line_end": 16032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_497", - "name": "function_497", - "symbol_type": "Function", - "file_path": "", - "line_start": 16037, - "line_end": 16040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_498", - "name": "function_498", - "symbol_type": "Function", - "file_path": "", - "line_start": 16045, - "line_end": 16059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_499", - "name": "function_499", - "symbol_type": "Function", - "file_path": "", - "line_start": 16064, - "line_end": 16073, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_500", - "name": "function_500", - "symbol_type": "Function", - "file_path": "", - "line_start": 16079, - "line_end": 16119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_501", - "name": "function_501", - "symbol_type": "Function", - "file_path": "", - "line_start": 16127, - "line_end": 16166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_502", - "name": "function_502", - "symbol_type": "Function", - "file_path": "", - "line_start": 16174, - "line_end": 16183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_503", - "name": "function_503", - "symbol_type": "Function", - "file_path": "", - "line_start": 16189, - "line_end": 16199, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_504", - "name": "function_504", - "symbol_type": "Function", - "file_path": "", - "line_start": 16205, - "line_end": 16208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_505", - "name": "function_505", - "symbol_type": "Function", - "file_path": "", - "line_start": 16210, - "line_end": 16213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_506", - "name": "function_506", - "symbol_type": "Function", - "file_path": "", - "line_start": 16219, - "line_end": 16222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_507", - "name": "function_507", - "symbol_type": "Function", - "file_path": "", - "line_start": 16224, - "line_end": 16227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16236, - "line_end": 16245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16250, - "line_end": 16332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16338, - "line_end": 16414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_511", - "name": "function_511", - "symbol_type": "Function", - "file_path": "", - "line_start": 16419, - "line_end": 16518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_512", - "name": "function_512", - "symbol_type": "Function", - "file_path": "", - "line_start": 16520, - "line_end": 16523, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_513", - "name": "function_513", - "symbol_type": "Function", - "file_path": "", - "line_start": 16525, - "line_end": 16528, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_514", - "name": "function_514", - "symbol_type": "Function", - "file_path": "", - "line_start": 16533, - "line_end": 16640, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 16660, - "line_end": 16674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_516", - "name": "function_516", - "symbol_type": "Function", - "file_path": "", - "line_start": 16676, - "line_end": 16701, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16710, - "line_end": 16713, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16717, - "line_end": 16724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16728, - "line_end": 16731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16739, - "line_end": 16742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_521", - "name": "function_521", - "symbol_type": "Function", - "file_path": "", - "line_start": 16804, - "line_end": 17898, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 16831, - "line_end": 16838, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 16847, - "line_end": 16847, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_524", - "name": "function_524", - "symbol_type": "Function", - "file_path": "", - "line_start": 16853, - "line_end": 16859, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_525", - "name": "function_525", - "symbol_type": "Function", - "file_path": "", - "line_start": 16865, - "line_end": 16924, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_526", - "name": "function_526", - "symbol_type": "Function", - "file_path": "", - "line_start": 16930, - "line_end": 16941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_527", - "name": "function_527", - "symbol_type": "Function", - "file_path": "", - "line_start": 16947, - "line_end": 16955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 16972, - "line_end": 17037, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 17111, - "line_end": 17269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 17275, - "line_end": 17327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 17329, - "line_end": 17364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 17370, - "line_end": 17603, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17611, - "line_end": 17662, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_534", - "name": "function_534", - "symbol_type": "Function", - "file_path": "", - "line_start": 17670, - "line_end": 17702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_535", - "name": "function_535", - "symbol_type": "Function", - "file_path": "", - "line_start": 17710, - "line_end": 17750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_536", - "name": "function_536", - "symbol_type": "Function", - "file_path": "", - "line_start": 17762, - "line_end": 17831, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_537", - "name": "function_537", - "symbol_type": "Function", - "file_path": "", - "line_start": 17901, - "line_end": 18554, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17951, - "line_end": 17960, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17963, - "line_end": 17963, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_540", - "name": "function_540", - "symbol_type": "Function", - "file_path": "", - "line_start": 17964, - "line_end": 17964, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17965, - "line_end": 17965, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_542", - "name": "function_542", - "symbol_type": "Function", - "file_path": "", - "line_start": 17966, - "line_end": 17966, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_543", - "name": "function_543", - "symbol_type": "Function", - "file_path": "", - "line_start": 17967, - "line_end": 17967, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_544", - "name": "function_544", - "symbol_type": "Function", - "file_path": "", - "line_start": 17991, - "line_end": 18258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 18289, - "line_end": 18470, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 18561, - "line_end": 18568, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18572, - "line_end": 18575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18578, - "line_end": 18581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18598, - "line_end": 18673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18683, - "line_end": 18702, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18704, - "line_end": 18710, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18712, - "line_end": 18761, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 18784, - "line_end": 18817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18824, - "line_end": 18828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18839, - "line_end": 18843, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18926, - "line_end": 18926, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18927, - "line_end": 18927, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18929, - "line_end": 18930, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18931, - "line_end": 18932, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18934, - "line_end": 18945, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18949, - "line_end": 18960, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_562", - "name": "function_562", - "symbol_type": "Function", - "file_path": "", - "line_start": 18962, - "line_end": 18965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_563", - "name": "function_563", - "symbol_type": "Function", - "file_path": "", - "line_start": 18969, - "line_end": 18972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_564", - "name": "function_564", - "symbol_type": "Function", - "file_path": "", - "line_start": 18974, - "line_end": 18977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_565", - "name": "function_565", - "symbol_type": "Function", - "file_path": "", - "line_start": 18981, - "line_end": 18984, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_566", - "name": "function_566", - "symbol_type": "Function", - "file_path": "", - "line_start": 18986, - "line_end": 18997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_567", - "name": "function_567", - "symbol_type": "Function", - "file_path": "", - "line_start": 19001, - "line_end": 19012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_568", - "name": "function_568", - "symbol_type": "Function", - "file_path": "", - "line_start": 19014, - "line_end": 19025, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_569", - "name": "function_569", - "symbol_type": "Function", - "file_path": "", - "line_start": 19029, - "line_end": 19040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19042, - "line_end": 19059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19063, - "line_end": 19080, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19082, - "line_end": 19085, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19087, - "line_end": 19138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19140, - "line_end": 19150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19154, - "line_end": 19164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19166, - "line_end": 19176, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19180, - "line_end": 19190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19192, - "line_end": 19202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19204, - "line_end": 19207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19209, - "line_end": 19220, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19227, - "line_end": 19233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_582", - "name": "function_582", - "symbol_type": "Function", - "file_path": "", - "line_start": 19252, - "line_end": 19829, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 19306, - "line_end": 19315, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 19416, - "line_end": 19419, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 19423, - "line_end": 19485, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_586", - "name": "function_586", - "symbol_type": "Function", - "file_path": "", - "line_start": 19551, - "line_end": 19569, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19621, - "line_end": 19621, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19623, - "line_end": 19623, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19625, - "line_end": 19625, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19627, - "line_end": 19627, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19629, - "line_end": 19629, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19631, - "line_end": 19700, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19703, - "line_end": 19703, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19706, - "line_end": 19706, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19709, - "line_end": 19709, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19712, - "line_end": 19712, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19715, - "line_end": 19715, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19718, - "line_end": 19718, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19721, - "line_end": 19721, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19724, - "line_end": 19724, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19727, - "line_end": 19727, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19730, - "line_end": 19730, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 19732, - "line_end": 19828, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 19866, - "line_end": 19866, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19871, - "line_end": 19906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19908, - "line_end": 19919, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 19921, - "line_end": 19957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19983, - "line_end": 19987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19991, - "line_end": 19995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20003, - "line_end": 20010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20017, - "line_end": 20066, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20070, - "line_end": 20121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20125, - "line_end": 20132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20136, - "line_end": 20143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20147, - "line_end": 20154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20158, - "line_end": 20165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20169, - "line_end": 20173, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20177, - "line_end": 20181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20185, - "line_end": 20191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20198, - "line_end": 20298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20308, - "line_end": 20308, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20312, - "line_end": 20376, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20380, - "line_end": 20393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_624", - "name": "function_624", - "symbol_type": "Function", - "file_path": "", - "line_start": 20397, - "line_end": 20414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_625", - "name": "function_625", - "symbol_type": "Function", - "file_path": "", - "line_start": 20418, - "line_end": 20422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 20459, - "line_end": 20462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 20466, - "line_end": 20469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 20473, - "line_end": 20476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 20480, - "line_end": 20483, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 20487, - "line_end": 20490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 20494, - "line_end": 20497, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 20501, - "line_end": 20504, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 20508, - "line_end": 20511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 20515, - "line_end": 20518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20522, - "line_end": 20525, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20529, - "line_end": 20532, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 20536, - "line_end": 20539, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20543, - "line_end": 20546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 20550, - "line_end": 20553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_640", - "name": "function_640", - "symbol_type": "Function", - "file_path": "", - "line_start": 20557, - "line_end": 20560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21113, - "line_end": 21117, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21127, - "line_end": 21141, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21136, - "line_end": 21140, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21150, - "line_end": 21164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21170, - "line_end": 21184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21188, - "line_end": 21202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21208, - "line_end": 21222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_648", - "name": "function_648", - "symbol_type": "Function", - "file_path": "", - "line_start": 21226, - "line_end": 21268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_649", - "name": "function_649", - "symbol_type": "Function", - "file_path": "", - "line_start": 21272, - "line_end": 21281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_650", - "name": "function_650", - "symbol_type": "Function", - "file_path": "", - "line_start": 21285, - "line_end": 21303, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_651", - "name": "function_651", - "symbol_type": "Function", - "file_path": "", - "line_start": 21307, - "line_end": 21318, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_652", - "name": "function_652", - "symbol_type": "Function", - "file_path": "", - "line_start": 21323, - "line_end": 21326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_653", - "name": "function_653", - "symbol_type": "Function", - "file_path": "", - "line_start": 21329, - "line_end": 21332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_654", - "name": "function_654", - "symbol_type": "Function", - "file_path": "", - "line_start": 21338, - "line_end": 21356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_655", - "name": "function_655", - "symbol_type": "Function", - "file_path": "", - "line_start": 21362, - "line_end": 21373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21417, - "line_end": 21433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21443, - "line_end": 21459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21470, - "line_end": 21486, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21493, - "line_end": 21507, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21503, - "line_end": 21506, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21518, - "line_end": 21532, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21528, - "line_end": 21531, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21542, - "line_end": 21545, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21553, - "line_end": 21556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21560, - "line_end": 21563, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21567, - "line_end": 21570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21574, - "line_end": 21579, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21583, - "line_end": 21588, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21595, - "line_end": 21658, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21665, - "line_end": 21731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21733, - "line_end": 21745, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21749, - "line_end": 21764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21781, - "line_end": 21784, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21788, - "line_end": 21804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21818, - "line_end": 21828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21832, - "line_end": 21842, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21848, - "line_end": 21858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21864, - "line_end": 21874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21878, - "line_end": 21882, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21888, - "line_end": 21892, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21896, - "line_end": 21899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21905, - "line_end": 21908, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21912, - "line_end": 21915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21919, - "line_end": 21922, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21936, - "line_end": 21941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21945, - "line_end": 21948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21952, - "line_end": 21957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21961, - "line_end": 21966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21970, - "line_end": 21973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 21977, - "line_end": 21982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21986, - "line_end": 21989, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21993, - "line_end": 21996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22000, - "line_end": 22003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22007, - "line_end": 22010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22014, - "line_end": 22017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22021, - "line_end": 22024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22033, - "line_end": 22036, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22044, - "line_end": 22047, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22051, - "line_end": 22054, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22058, - "line_end": 22061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 22075, - "line_end": 22110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22114, - "line_end": 22149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22153, - "line_end": 22183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 22197, - "line_end": 22254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22258, - "line_end": 22279, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_706", - "name": "function_706", - "symbol_type": "Function", - "file_path": "", - "line_start": 22283, - "line_end": 22287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22291, - "line_end": 22311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_708", - "name": "function_708", - "symbol_type": "Function", - "file_path": "", - "line_start": 22315, - "line_end": 22319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22323, - "line_end": 22342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_710", - "name": "function_710", - "symbol_type": "Function", - "file_path": "", - "line_start": 22346, - "line_end": 22350, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22354, - "line_end": 22366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_712", - "name": "function_712", - "symbol_type": "Function", - "file_path": "", - "line_start": 22370, - "line_end": 22374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22379, - "line_end": 22399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 22404, - "line_end": 22430, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 22436, - "line_end": 22451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22455, - "line_end": 22471, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22475, - "line_end": 22478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22482, - "line_end": 22498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22502, - "line_end": 22529, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22533, - "line_end": 22549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22553, - "line_end": 22574, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22578, - "line_end": 22581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22585, - "line_end": 22628, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22632, - "line_end": 22645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22649, - "line_end": 22657, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22661, - "line_end": 22673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22677, - "line_end": 22689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22693, - "line_end": 22705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22709, - "line_end": 22721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22725, - "line_end": 22737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 22814, - "line_end": 22817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 22843, - "line_end": 22846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_733", - "name": "function_733", - "symbol_type": "Function", - "file_path": "", - "line_start": 22852, - "line_end": 22863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_734", - "name": "function_734", - "symbol_type": "Function", - "file_path": "", - "line_start": 22869, - "line_end": 22872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_735", - "name": "function_735", - "symbol_type": "Function", - "file_path": "", - "line_start": 22876, - "line_end": 22883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_736", - "name": "function_736", - "symbol_type": "Function", - "file_path": "", - "line_start": 22887, - "line_end": 22896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_737", - "name": "function_737", - "symbol_type": "Function", - "file_path": "", - "line_start": 22902, - "line_end": 22905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_738", - "name": "function_738", - "symbol_type": "Function", - "file_path": "", - "line_start": 22914, - "line_end": 22921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_739", - "name": "function_739", - "symbol_type": "Function", - "file_path": "", - "line_start": 22927, - "line_end": 22930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_740", - "name": "function_740", - "symbol_type": "Function", - "file_path": "", - "line_start": 22935, - "line_end": 22942, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_741", - "name": "function_741", - "symbol_type": "Function", - "file_path": "", - "line_start": 22948, - "line_end": 22951, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_742", - "name": "function_742", - "symbol_type": "Function", - "file_path": "", - "line_start": 22956, - "line_end": 22966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_743", - "name": "function_743", - "symbol_type": "Function", - "file_path": "", - "line_start": 22972, - "line_end": 22975, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_744", - "name": "function_744", - "symbol_type": "Function", - "file_path": "", - "line_start": 22981, - "line_end": 22984, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_745", - "name": "function_745", - "symbol_type": "Function", - "file_path": "", - "line_start": 22988, - "line_end": 22995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_746", - "name": "function_746", - "symbol_type": "Function", - "file_path": "", - "line_start": 23001, - "line_end": 23004, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_747", - "name": "function_747", - "symbol_type": "Function", - "file_path": "", - "line_start": 23010, - "line_end": 23013, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_748", - "name": "function_748", - "symbol_type": "Function", - "file_path": "", - "line_start": 23017, - "line_end": 24113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_749", - "name": "function_749", - "symbol_type": "Function", - "file_path": "", - "line_start": 23038, - "line_end": 23041, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_750", - "name": "function_750", - "symbol_type": "Function", - "file_path": "", - "line_start": 23045, - "line_end": 23052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_751", - "name": "function_751", - "symbol_type": "Function", - "file_path": "", - "line_start": 23058, - "line_end": 23061, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_752", - "name": "function_752", - "symbol_type": "Function", - "file_path": "", - "line_start": 23067, - "line_end": 23070, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_753", - "name": "function_753", - "symbol_type": "Function", - "file_path": "", - "line_start": 23074, - "line_end": 23082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_754", - "name": "function_754", - "symbol_type": "Function", - "file_path": "", - "line_start": 23088, - "line_end": 23091, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_755", - "name": "function_755", - "symbol_type": "Function", - "file_path": "", - "line_start": 23097, - "line_end": 23100, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_756", - "name": "function_756", - "symbol_type": "Function", - "file_path": "", - "line_start": 23104, - "line_end": 23111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_757", - "name": "function_757", - "symbol_type": "Function", - "file_path": "", - "line_start": 23117, - "line_end": 23120, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_758", - "name": "function_758", - "symbol_type": "Function", - "file_path": "", - "line_start": 23126, - "line_end": 23129, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_759", - "name": "function_759", - "symbol_type": "Function", - "file_path": "", - "line_start": 23145, - "line_end": 23158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23185, - "line_end": 23194, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23199, - "line_end": 23209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23213, - "line_end": 23221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23226, - "line_end": 23230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23235, - "line_end": 23239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23243, - "line_end": 23247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23253, - "line_end": 23262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23268, - "line_end": 23277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23287, - "line_end": 23298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_769", - "name": "function_769", - "symbol_type": "Function", - "file_path": "", - "line_start": 23328, - "line_end": 23353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23391, - "line_end": 23394, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23398, - "line_end": 23401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23405, - "line_end": 23410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23414, - "line_end": 23417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23421, - "line_end": 23424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23428, - "line_end": 23435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23439, - "line_end": 23443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23447, - "line_end": 23451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23455, - "line_end": 23462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23466, - "line_end": 23470, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23474, - "line_end": 23478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23482, - "line_end": 23487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23491, - "line_end": 23494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23498, - "line_end": 23501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23506, - "line_end": 23517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23522, - "line_end": 23533, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23538, - "line_end": 23544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23549, - "line_end": 23560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23565, - "line_end": 23575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23580, - "line_end": 23590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23595, - "line_end": 23600, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23604, - "line_end": 23614, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23619, - "line_end": 23629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23634, - "line_end": 23644, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23649, - "line_end": 23654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23658, - "line_end": 23668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23674, - "line_end": 23684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23689, - "line_end": 23699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23704, - "line_end": 23714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23719, - "line_end": 23729, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23734, - "line_end": 23739, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23743, - "line_end": 23753, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_802", - "name": "function_802", - "symbol_type": "Function", - "file_path": "", - "line_start": 23765, - "line_end": 23768, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_803", - "name": "function_803", - "symbol_type": "Function", - "file_path": "", - "line_start": 23772, - "line_end": 23775, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_804", - "name": "function_804", - "symbol_type": "Function", - "file_path": "", - "line_start": 23779, - "line_end": 23782, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_805", - "name": "function_805", - "symbol_type": "Function", - "file_path": "", - "line_start": 23786, - "line_end": 23789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23793, - "line_end": 23796, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23800, - "line_end": 23803, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23807, - "line_end": 23810, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23814, - "line_end": 23817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23821, - "line_end": 23826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23830, - "line_end": 23833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 23846, - "line_end": 24112, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24117, - "line_end": 24122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 24126, - "line_end": 24257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24269, - "line_end": 24293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_816", - "name": "function_816", - "symbol_type": "Function", - "file_path": "", - "line_start": 24300, - "line_end": 24304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_817", - "name": "function_817", - "symbol_type": "Function", - "file_path": "", - "line_start": 24314, - "line_end": 24317, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_818", - "name": "function_818", - "symbol_type": "Function", - "file_path": "", - "line_start": 24322, - "line_end": 24325, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_819", - "name": "function_819", - "symbol_type": "Function", - "file_path": "", - "line_start": 24329, - "line_end": 24383, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_820", - "name": "function_820", - "symbol_type": "Function", - "file_path": "", - "line_start": 24340, - "line_end": 24347, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_821", - "name": "function_821", - "symbol_type": "Function", - "file_path": "", - "line_start": 24343, - "line_end": 24346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_822", - "name": "function_822", - "symbol_type": "Function", - "file_path": "", - "line_start": 24357, - "line_end": 24365, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 24373, - "line_end": 24379, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 2798, - "line_end": 2798, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 3019, - "line_end": 3033, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 3106, - "line_end": 3113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 3127, - "line_end": 3127, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 3131, - "line_end": 3134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 3137, - "line_end": 3140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 3145, - "line_end": 3149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 3152, - "line_end": 3155, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 3190, - "line_end": 3190, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 3191, - "line_end": 3191, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 3195, - "line_end": 3198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 3255, - "line_end": 3255, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 3258, - "line_end": 3268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3273, - "line_end": 3275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 3278, - "line_end": 3281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 3284, - "line_end": 3291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 3398, - "line_end": 3398, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3409, - "line_end": 3409, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3445, - "line_end": 3445, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 3454, - "line_end": 3458, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3465, - "line_end": 3465, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3468, - "line_end": 3468, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 3471, - "line_end": 3471, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3509, - "line_end": 3509, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3516, - "line_end": 3519, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 3522, - "line_end": 3529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3534, - "line_end": 3534, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 3537, - "line_end": 3544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3549, - "line_end": 3549, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 3552, - "line_end": 3559, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 3565, - "line_end": 3565, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 3569, - "line_end": 3575, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 3585, - "line_end": 3585, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 3586, - "line_end": 3586, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 3588, - "line_end": 3589, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 3592, - "line_end": 3592, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3598, - "line_end": 3598, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 3601, - "line_end": 3602, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 3605, - "line_end": 3606, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 3609, - "line_end": 3610, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 3613, - "line_end": 3614, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3618, - "line_end": 3618, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 3621, - "line_end": 3621, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_48", - "name": "class_48", - "symbol_type": "Class", - "file_path": "", - "line_start": 3624, - "line_end": 3624, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 3627, - "line_end": 3627, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_50", - "name": "class_50", - "symbol_type": "Class", - "file_path": "", - "line_start": 3630, - "line_end": 3630, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3634, - "line_end": 3634, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 3637, - "line_end": 3649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 3652, - "line_end": 3668, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3681, - "line_end": 3681, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 3684, - "line_end": 3684, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3688, - "line_end": 3688, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 3691, - "line_end": 3704, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3707, - "line_end": 3708, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3712, - "line_end": 3712, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 3715, - "line_end": 3736, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3739, - "line_end": 3741, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3744, - "line_end": 3748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3751, - "line_end": 3765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3768, - "line_end": 3768, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_65", - "name": "class_65", - "symbol_type": "Class", - "file_path": "", - "line_start": 3771, - "line_end": 3783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3786, - "line_end": 3787, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3790, - "line_end": 3790, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 3793, - "line_end": 3797, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 3800, - "line_end": 3827, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3830, - "line_end": 3831, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3835, - "line_end": 3835, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 3838, - "line_end": 3853, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3856, - "line_end": 3858, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3861, - "line_end": 3861, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_75", - "name": "class_75", - "symbol_type": "Class", - "file_path": "", - "line_start": 3864, - "line_end": 3870, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3873, - "line_end": 3874, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 3877, - "line_end": 3877, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_78", - "name": "class_78", - "symbol_type": "Class", - "file_path": "", - "line_start": 3880, - "line_end": 3880, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3883, - "line_end": 3883, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_80", - "name": "class_80", - "symbol_type": "Class", - "file_path": "", - "line_start": 3886, - "line_end": 3886, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_81", - "name": "class_81", - "symbol_type": "Class", - "file_path": "", - "line_start": 3889, - "line_end": 3890, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3894, - "line_end": 3894, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_83", - "name": "class_83", - "symbol_type": "Class", - "file_path": "", - "line_start": 3897, - "line_end": 3897, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3904, - "line_end": 3904, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_85", - "name": "class_85", - "symbol_type": "Class", - "file_path": "", - "line_start": 3907, - "line_end": 3910, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3960, - "line_end": 3973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 3964, - "line_end": 3967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 4010, - "line_end": 4010, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_89", - "name": "class_89", - "symbol_type": "Class", - "file_path": "", - "line_start": 4013, - "line_end": 4020, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_90", - "name": "class_90", - "symbol_type": "Class", - "file_path": "", - "line_start": 4023, - "line_end": 4030, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_91", - "name": "class_91", - "symbol_type": "Class", - "file_path": "", - "line_start": 4033, - "line_end": 4040, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_92", - "name": "class_92", - "symbol_type": "Class", - "file_path": "", - "line_start": 4044, - "line_end": 4052, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 4057, - "line_end": 4057, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_94", - "name": "class_94", - "symbol_type": "Class", - "file_path": "", - "line_start": 4060, - "line_end": 4066, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_95", - "name": "class_95", - "symbol_type": "Class", - "file_path": "", - "line_start": 4069, - "line_end": 4075, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 4109, - "line_end": 4109, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 4131, - "line_end": 4131, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exception", - "name": "exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 4300, - "line_end": 4394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4398, - "line_end": 4447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 4451, - "line_end": 4465, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4469, - "line_end": 4482, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 4486, - "line_end": 4499, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4503, - "line_end": 4516, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 4544, - "line_end": 4544, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5027, - "line_end": 5036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 5114, - "line_end": 5232, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 5235, - "line_end": 5265, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_108", - "name": "class_108", - "symbol_type": "Class", - "file_path": "", - "line_start": 5300, - "line_end": 5301, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_109", - "name": "class_109", - "symbol_type": "Class", - "file_path": "", - "line_start": 5304, - "line_end": 5310, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 5348, - "line_end": 5348, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_111", - "name": "class_111", - "symbol_type": "Class", - "file_path": "", - "line_start": 5351, - "line_end": 5361, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_112", - "name": "class_112", - "symbol_type": "Class", - "file_path": "", - "line_start": 5364, - "line_end": 5394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_113", - "name": "class_113", - "symbol_type": "Class", - "file_path": "", - "line_start": 5397, - "line_end": 5416, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_114", - "name": "class_114", - "symbol_type": "Class", - "file_path": "", - "line_start": 5419, - "line_end": 5429, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_115", - "name": "class_115", - "symbol_type": "Class", - "file_path": "", - "line_start": 5432, - "line_end": 5442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_116", - "name": "class_116", - "symbol_type": "Class", - "file_path": "", - "line_start": 5445, - "line_end": 5455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_117", - "name": "class_117", - "symbol_type": "Class", - "file_path": "", - "line_start": 5458, - "line_end": 5525, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_118", - "name": "class_118", - "symbol_type": "Class", - "file_path": "", - "line_start": 5528, - "line_end": 5563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5728, - "line_end": 5735, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_adl_serializer", - "name": "adl_serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 5761, - "line_end": 5791, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6153, - "line_end": 6202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6208, - "line_end": 6240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 6244, - "line_end": 6244, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_124", - "name": "class_124", - "symbol_type": "Class", - "file_path": "", - "line_start": 6247, - "line_end": 6302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_125", - "name": "class_125", - "symbol_type": "Class", - "file_path": "", - "line_start": 6305, - "line_end": 6364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6368, - "line_end": 6409, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6413, - "line_end": 6423, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 6426, - "line_end": 6433, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_129", - "name": "class_129", - "symbol_type": "Class", - "file_path": "", - "line_start": 6436, - "line_end": 6447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6468, - "line_end": 6468, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_131", - "name": "class_131", - "symbol_type": "Class", - "file_path": "", - "line_start": 6471, - "line_end": 6480, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6534, - "line_end": 6560, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 6913, - "line_end": 7217, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 7220, - "line_end": 7293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 7335, - "line_end": 7405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 7412, - "line_end": 8611, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 9014, - "line_end": 9042, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 9045, - "line_end": 9096, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 9141, - "line_end": 12076, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 12158, - "line_end": 12602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 12650, - "line_end": 12750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 12766, - "line_end": 12774, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 12813, - "line_end": 12813, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 12814, - "line_end": 12814, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 12833, - "line_end": 13021, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 13586, - "line_end": 13669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 14695, - "line_end": 14748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14820, - "line_end": 14831, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14839, - "line_end": 14859, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14864, - "line_end": 14884, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14889, - "line_end": 14909, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14912, - "line_end": 14934, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 14954, - "line_end": 16750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 16840, - "line_end": 16956, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 16958, - "line_end": 16963, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 17097, - "line_end": 17102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17935, - "line_end": 18471, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_158", - "name": "class_158", - "symbol_type": "Class", - "file_path": "", - "line_start": 24351, - "line_end": 24366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-src/single_include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 6268, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.461155221Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/_deps/nlohmann_json-subbuild/CMakeFiles/nlohmann_json-populate.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 126, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.473350944Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_STD_FILESYSTEM.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-build/test_STD_FILESYSTEM.cpp", - "language": "cpp", - "size_bytes": 746, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.504926500Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply_mode.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/apply_mode.hpp", - "language": "cpp", - "size_bytes": 390, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.563909023Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "argv_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/argv_input.hpp", - "language": "cpp", - "size_bytes": 1302, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.565592186Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_make_argv_source", - "name": "make_argv_source", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_argv_input", - "name": "argv_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_argv_input", - "name": "argv_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_argv_input", - "name": "argv_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/ascii.hpp", - "language": "cpp", - "size_bytes": 3487, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.567613227Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_alnum", - "name": "alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alpha", - "name": "alpha", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 6, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blank", - "name": "blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_digit", - "name": "digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ellipsis", - "name": "ellipsis", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_forty_two", - "name": "forty_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 29, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_first", - "name": "identifier_first", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier_other", - "name": "identifier_other", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identifier", - "name": "identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 29, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_keyword", - "name": "keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 29, - "column_end": 178, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lower", - "name": "lower", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 29, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 35, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nul", - "name": "nul", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_odigit", - "name": "odigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 29, - "column_end": 124, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print", - "name": "print", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 35, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 29, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seven", - "name": "seven", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_shebang", - "name": "shebang", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_space", - "name": "space", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 29, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_three", - "name": "three", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 25, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 25, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_upper", - "name": "upper", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xdigit", - "name": "xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "buffer_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/buffer_input.hpp", - "language": "cpp", - "size_bytes": 6262, - "total_lines": 226, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.569859065Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input", - "name": "buffer_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 76, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 128, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 133, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 148, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mark", - "name": "mark", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 172, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 177, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 182, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 198, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 204, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 210, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_buffer_input", - "name": "buffer_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 222, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_action.hpp", - "language": "cpp", - "size_bytes": 1139, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.571706273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action", - "name": "change_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_state.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_action_and_state.hpp", - "language": "cpp", - "size_bytes": 2481, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.573494763Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action_and_state", - "name": "change_action_and_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 67, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_states.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_action_and_states.hpp", - "language": "cpp", - "size_bytes": 2097, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.575313249Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_action_and_states", - "name": "change_action_and_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_control.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_control.hpp", - "language": "cpp", - "size_bytes": 1009, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.576901145Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_control", - "name": "change_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_state.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_state.hpp", - "language": "cpp", - "size_bytes": 2270, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.578625292Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_state", - "name": "change_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_states.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/change_states.hpp", - "language": "cpp", - "size_bytes": 1889, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.580465177Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_change_states", - "name": "change_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "config.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/config.hpp", - "language": "cpp", - "size_bytes": 286, - "total_lines": 11, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.581978836Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abnf.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/abnf.hpp", - "language": "cpp", - "size_bytes": 2147, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.584615150Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ALPHA", - "name": "ALPHA", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BIT", - "name": "BIT", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CHAR", - "name": "CHAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 118, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CR", - "name": "CR", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CRLF", - "name": "CRLF", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CTL", - "name": "CTL", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DIGIT", - "name": "DIGIT", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DQUOTE", - "name": "DQUOTE", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HEXDIG", - "name": "HEXDIG", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTAB", - "name": "HTAB", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LF", - "name": "LF", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LWSP", - "name": "LWSP", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 255, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_OCTET", - "name": "OCTET", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SP", - "name": "SP", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_VCHAR", - "name": "VCHAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_WSP", - "name": "WSP", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "add_state.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/add_state.hpp", - "language": "cpp", - "size_bytes": 2309, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.586388406Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_add_state", - "name": "add_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "alphabet.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/alphabet.hpp", - "language": "cpp", - "size_bytes": 2992, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.588190667Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/analyze.hpp", - "language": "cpp", - "size_bytes": 6317, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.590341954Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_analyze_entry", - "name": "analyze_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 9, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 9, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 59, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_consumes", - "name": "consumes", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 79, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 138, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_insert", - "name": "analyze_insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 160, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_insert_impl", - "name": "analyze_insert_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze_cycles", - "name": "analyze_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 185, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_entry", - "name": "analyze_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_cycles_impl", - "name": "analyze_cycles_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 148, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_cycles", - "name": "analyze_cycles", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze_traits.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/analyze_traits.hpp", - "language": "cpp", - "size_bytes": 9780, - "total_lines": 277, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.593068414Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_any_traits", - "name": "analyze_any_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_opt_traits", - "name": "analyze_opt_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_seq_traits", - "name": "analyze_seq_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_analyze_sor_traits", - "name": "analyze_sor_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_23", - "name": "class_23", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_24", - "name": "class_24", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_25", - "name": "class_25", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_28", - "name": "class_28", - "symbol_type": "Class", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_31", - "name": "class_31", - "symbol_type": "Class", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_33", - "name": "class_33", - "symbol_type": "Class", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_35", - "name": "class_35", - "symbol_type": "Class", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_36", - "name": "class_36", - "symbol_type": "Class", - "file_path": "", - "line_start": 219, - "line_end": 221, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_37", - "name": "class_37", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 226, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 236, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_40", - "name": "class_40", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_41", - "name": "class_41", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "check_bytes.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/check_bytes.hpp", - "language": "cpp", - "size_bytes": 1572, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.594951813Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_check_bytes", - "name": "check_bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control_action.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/control_action.hpp", - "language": "cpp", - "size_bytes": 3324, - "total_lines": 93, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.596840954Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 63, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 67, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_impl", - "name": "match_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_control_action", - "name": "control_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "coverage.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/coverage.hpp", - "language": "cpp", - "size_bytes": 4905, - "total_lines": 151, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.598973594Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_visit_branches", - "name": "visit_branches", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_coverage_state", - "name": "coverage_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 81, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 92, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 103, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 113, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 124, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 128, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 132, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_coverage", - "name": "coverage", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 147, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_coverage_info", - "name": "coverage_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_entry", - "name": "coverage_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_insert", - "name": "coverage_insert", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 58, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_coverage_state", - "name": "coverage_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 133, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "forward.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/forward.hpp", - "language": "cpp", - "size_bytes": 404, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.600690914Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_analyze_traits", - "name": "analyze_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "function.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/function.hpp", - "language": "cpp", - "size_bytes": 1407, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.602261878Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_function", - "name": "function", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function", - "name": "function", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 48, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/http.hpp", - "language": "cpp", - "size_bytes": 10161, - "total_lines": 277, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.605474713Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 171, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 199, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 223, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_tchar", - "name": "tchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token", - "name": "token", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_name", - "name": "field_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_vchar", - "name": "field_vchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_content", - "name": "field_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_value", - "name": "field_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_header_field", - "name": "header_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_method", - "name": "method", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_path", - "name": "absolute_path", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_origin_form", - "name": "origin_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_form", - "name": "absolute_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_authority_form", - "name": "authority_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_asterisk_form", - "name": "asterisk_form", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_request_target", - "name": "request_target", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_status_code", - "name": "status_code", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reason_phrase", - "name": "reason_phrase", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTTP_version", - "name": "HTTP_version", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_request_line", - "name": "request_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_status_line", - "name": "status_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_start_line", - "name": "start_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_body", - "name": "message_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HTTP_message", - "name": "HTTP_message", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Content_Length", - "name": "Content_Length", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uri_host", - "name": "uri_host", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_port", - "name": "port", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Host", - "name": "Host", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_pair", - "name": "quoted_pair", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string", - "name": "quoted_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_parameter", - "name": "transfer_parameter", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_extension", - "name": "transfer_extension", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_transfer_coding", - "name": "transfer_coding", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rank", - "name": "rank", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 94, - "column_start": 3, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_t_ranking", - "name": "t_ranking", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_t_codings", - "name": "t_codings", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 3, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TE", - "name": "TE", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_connection_option", - "name": "connection_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 3, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Connection", - "name": "Connection", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Trailer", - "name": "Trailer", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Transfer_Encoding", - "name": "Transfer_Encoding", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol_name", - "name": "protocol_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol_version", - "name": "protocol_version", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_protocol", - "name": "protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Upgrade", - "name": "Upgrade", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pseudonym", - "name": "pseudonym", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_received_protocol", - "name": "received_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_received_by", - "name": "received_by", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Via", - "name": "Via", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_http_URI", - "name": "http_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 3, - "column_end": 149, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_https_URI", - "name": "https_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 3, - "column_end": 155, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_partial_URI", - "name": "partial_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_size", - "name": "chunk_size", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 172, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext_name", - "name": "chunk_ext_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext_val", - "name": "chunk_ext_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_ext", - "name": "chunk_ext", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk_data", - "name": "chunk_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 180, - "line_end": 200, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 208, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_59", - "name": "class_59", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 241, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunk", - "name": "chunk", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 264, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_last_chunk", - "name": "last_chunk", - "symbol_type": "Class", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trailer_part", - "name": "trailer_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_chunked_body", - "name": "chunked_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/icu/internal.hpp", - "language": "cpp", - "size_bytes": 2923, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.608468166Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 46, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 61, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 73, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 47, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 74, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/icu/utf16.hpp", - "language": "cpp", - "size_bytes": 12927, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.610720800Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/icu/utf32.hpp", - "language": "cpp", - "size_bytes": 12927, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.613138618Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 6, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 6, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 6, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 6, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 6, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 6, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 6, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 6, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 35, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 31, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 39, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 36, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 34, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 42, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 40, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 31, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 33, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 35, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 37, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 33, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 33, - "column_end": 133, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 33, - "column_end": 135, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/icu/utf8.hpp", - "language": "cpp", - "size_bytes": 6379, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.615292519Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_property", - "name": "binary_property", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_property_value", - "name": "property_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alphabetic", - "name": "alphabetic", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ascii_hex_digit", - "name": "ascii_hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_control", - "name": "bidi_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_mirrored", - "name": "bidi_mirrored", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive", - "name": "case_sensitive", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dash", - "name": "dash", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_default_ignorable_code_point", - "name": "default_ignorable_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_deprecated", - "name": "deprecated", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diacritic", - "name": "diacritic", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extender", - "name": "extender", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_composition_exclusion", - "name": "full_composition_exclusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_base", - "name": "grapheme_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_extend", - "name": "grapheme_extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_link", - "name": "grapheme_link", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_digit", - "name": "hex_digit", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hyphen", - "name": "hyphen", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_continue", - "name": "id_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_id_start", - "name": "id_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ideographic", - "name": "ideographic", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_binary_operator", - "name": "ids_binary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ids_trinary_operator", - "name": "ids_trinary_operator", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_join_control", - "name": "join_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_logical_order_exception", - "name": "logical_order_exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lowercase", - "name": "lowercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_math", - "name": "math", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfc_inert", - "name": "nfc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfd_inert", - "name": "nfd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkc_inert", - "name": "nfkc_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nfkd_inert", - "name": "nfkd_inert", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_noncharacter_code_point", - "name": "noncharacter_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_syntax", - "name": "pattern_syntax", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pattern_white_space", - "name": "pattern_white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_alnum", - "name": "posix_alnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_blank", - "name": "posix_blank", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_graph", - "name": "posix_graph", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_print", - "name": "posix_print", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_posix_xdigit", - "name": "posix_xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quotation_mark", - "name": "quotation_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_radical", - "name": "radical", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s_term", - "name": "s_term", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_starter", - "name": "segment_starter", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_soft_dotted", - "name": "soft_dotted", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_terminal_punctuation", - "name": "terminal_punctuation", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unified_ideograph", - "name": "unified_ideograph", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uppercase", - "name": "uppercase", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variation_selector", - "name": "variation_selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_white_space", - "name": "white_space", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_continue", - "name": "xid_continue", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xid_start", - "name": "xid_start", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bidi_class", - "name": "bidi_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 32, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_block", - "name": "block", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 28, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decomposition_type", - "name": "decomposition_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 36, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_east_asian_width", - "name": "east_asian_width", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 33, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_general_category", - "name": "general_category", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 31, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grapheme_cluster_break", - "name": "grapheme_cluster_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 39, - "column_end": 123, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hangul_syllable_type", - "name": "hangul_syllable_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 37, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_group", - "name": "joining_group", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 31, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_joining_type", - "name": "joining_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 30, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line_break", - "name": "line_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 28, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeric_type", - "name": "numeric_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 30, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sentence_break", - "name": "sentence_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 32, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_word_break", - "name": "word_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 34, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_canonical_combining_class", - "name": "canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 30, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lead_canonical_combining_class", - "name": "lead_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 30, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trail_canonical_combining_class", - "name": "trail_canonical_combining_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 30, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_then.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/if_then.hpp", - "language": "cpp", - "size_bytes": 1578, - "total_lines": 56, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.617517475Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_pair", - "name": "if_pair", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then", - "name": "if_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then", - "name": "if_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instantiate.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/instantiate.hpp", - "language": "cpp", - "size_bytes": 1068, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.619085446Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_instantiate", - "name": "instantiate", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/integer.hpp", - "language": "cpp", - "size_bytes": 15948, - "total_lines": 468, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.621992242Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_is_digit", - "name": "is_digit", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accumulate_digit", - "name": "accumulate_digit", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accumulate_digits", - "name": "accumulate_digits", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_positive", - "name": "convert_positive", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_negative", - "name": "convert_negative", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 125, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_unsigned", - "name": "convert_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 134, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert_signed", - "name": "convert_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 147, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_unsigned", - "name": "match_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_and_convert_unsigned_with_maximum_throws", - "name": "match_and_convert_unsigned_with_maximum_throws", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 192, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_and_convert_unsigned_with_maximum_nothrow", - "name": "match_and_convert_unsigned_with_maximum_nothrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 240, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 271, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 286, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 304, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 320, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 343, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 358, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 374, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 432, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_unsigned_rule_old", - "name": "unsigned_rule_old", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule_new", - "name": "unsigned_rule_new", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_old", - "name": "signed_rule_old", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_new", - "name": "signed_rule_new", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_bis", - "name": "signed_rule_bis", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_ter", - "name": "signed_rule_ter", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_action", - "name": "unsigned_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 241, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule", - "name": "unsigned_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 243, - "line_end": 253, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unsigned_rule_with_action", - "name": "unsigned_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 287, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_action", - "name": "maximum_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 290, - "line_end": 305, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_rule", - "name": "maximum_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_maximum_rule_with_action", - "name": "maximum_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 324, - "line_end": 359, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_action", - "name": "signed_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 361, - "line_end": 375, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule", - "name": "signed_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_action_action", - "name": "signed_action_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 392, - "line_end": 394, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 399, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_signed_rule_with_action", - "name": "signed_rule_with_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 403, - "line_end": 433, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 436, - "line_end": 438, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 441, - "line_end": 443, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 446, - "line_end": 448, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 451, - "line_end": 453, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 456, - "line_end": 458, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/endian.hpp", - "language": "cpp", - "size_bytes": 1703, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.625738390Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian_gcc.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/endian_gcc.hpp", - "language": "cpp", - "size_bytes": 4899, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.627812881Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 90, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 95, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 143, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 156, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 166, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 184, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 189, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 101, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 113, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 130, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 144, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 167, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 190, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "endian_win.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/endian_win.hpp", - "language": "cpp", - "size_bytes": 2456, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.629582470Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_convert", - "name": "convert", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_and_from_le", - "name": "to_and_from_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_and_from_be", - "name": "to_and_from_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_mask_uint.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_mask_uint.hpp", - "language": "cpp", - "size_bytes": 1647, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.631250144Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_mask_uint_impl", - "name": "peek_mask_uint_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_mask_uint8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_mask_uint8.hpp", - "language": "cpp", - "size_bytes": 880, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.632891215Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_mask_uint8", - "name": "peek_mask_uint8", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_uint.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_uint.hpp", - "language": "cpp", - "size_bytes": 1341, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.634437240Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_uint_impl", - "name": "peek_uint_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_uint8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_uint8.hpp", - "language": "cpp", - "size_bytes": 815, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.635929405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_uint8", - "name": "peek_uint8", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf16.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_utf16.hpp", - "language": "cpp", - "size_bytes": 1596, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.637735586Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf16_impl", - "name": "peek_utf16_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf32.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/peek_utf32.hpp", - "language": "cpp", - "size_bytes": 1172, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.639361494Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf32_impl", - "name": "peek_utf32_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "read_uint.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/read_uint.hpp", - "language": "cpp", - "size_bytes": 1646, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.641032729Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_read_uint16_be", - "name": "read_uint16_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint16_le", - "name": "read_uint16_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint32_be", - "name": "read_uint32_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 43, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint32_le", - "name": "read_uint32_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 53, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint64_be", - "name": "read_uint64_be", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_uint64_le", - "name": "read_uint64_le", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 73, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "set_stack_guard.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/set_stack_guard.hpp", - "language": "cpp", - "size_bytes": 1404, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.642820166Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_set_stack_guard", - "name": "set_stack_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vector_stack_guard.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/internal/vector_stack_guard.hpp", - "language": "cpp", - "size_bytes": 1259, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.644506151Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_vector_stack_guard", - "name": "vector_stack_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iri.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/iri.hpp", - "language": "cpp", - "size_bytes": 3902, - "total_lines": 106, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.646773546Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ucschar", - "name": "ucschar", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 56, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iprivate", - "name": "iprivate", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iunreserved", - "name": "iunreserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipchar", - "name": "ipchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment", - "name": "isegment", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment_nz", - "name": "isegment_nz", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_isegment_nz_nc", - "name": "isegment_nz_nc", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_abempty", - "name": "ipath_abempty", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_absolute", - "name": "ipath_absolute", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_noscheme", - "name": "ipath_noscheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_rootless", - "name": "ipath_rootless", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath_empty", - "name": "ipath_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ipath", - "name": "ipath", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 79, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ireg_name", - "name": "ireg_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ihost", - "name": "ihost", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iuserinfo", - "name": "iuserinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_iuserinfo", - "name": "opt_iuserinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iauthority", - "name": "iauthority", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iquery", - "name": "iquery", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ifragment", - "name": "ifragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_iquery", - "name": "opt_iquery", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_ifragment", - "name": "opt_ifragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ihier_part", - "name": "ihier_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 3, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_irelative_part", - "name": "irelative_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_irelative_ref", - "name": "irelative_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IRI", - "name": "IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IRI_reference", - "name": "IRI_reference", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_IRI", - "name": "absolute_IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/json.hpp", - "language": "cpp", - "size_bytes": 3227, - "total_lines": 91, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.648761347Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ws", - "name": "ws", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_padr", - "name": "padr", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_begin_array", - "name": "begin_array", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_begin_object", - "name": "begin_object", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_end_array", - "name": "end_array", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_end_object", - "name": "end_object", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_separator", - "name": "name_separator", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_separator", - "name": "value_separator", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_false_", - "name": "false_", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_null", - "name": "null", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_true_", - "name": "true_", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_digits", - "name": "digits", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_frac", - "name": "frac", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int_", - "name": "int_", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_xdigit", - "name": "xdigit", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unicode", - "name": "unicode", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_char", - "name": "escaped_char", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescaped", - "name": "unescaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_", - "name": "char_", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_content", - "name": "string_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_content", - "name": "key_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key", - "name": "key", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_element", - "name": "array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_array_element", - "name": "next_array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_content", - "name": "array_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array", - "name": "array", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 69, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_member_value", - "name": "member_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_member", - "name": "member", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_member", - "name": "next_member", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object_content", - "name": "object_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object", - "name": "object", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_element", - "name": "array_element", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_text", - "name": "text", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_pointer.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/json_pointer.hpp", - "language": "cpp", - "size_bytes": 1045, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.650470522Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_unescaped", - "name": "unescaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reference_token", - "name": "reference_token", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_non_negative_integer", - "name": "non_negative_integer", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_json_pointer", - "name": "relative_json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_bytes.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/limit_bytes.hpp", - "language": "cpp", - "size_bytes": 2449, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.652136037Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 9, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bytes_guard", - "name": "bytes_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_limit_bytes", - "name": "limit_bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_depth.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/limit_depth.hpp", - "language": "cpp", - "size_bytes": 2278, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.654044206Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 9, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_depth_guard", - "name": "depth_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_depth_guard", - "name": "depth_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_limit_depth", - "name": "limit_depth", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 79, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/parse_tree.hpp", - "language": "cpp", - "size_bytes": 15965, - "total_lines": 456, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.657110611Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_node", - "name": "basic_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_type", - "name": "is_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_type", - "name": "set_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_as_memory_input", - "name": "as_memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_content", - "name": "remove_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 139, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_state", - "name": "state", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 167, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 172, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 184, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 189, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 196, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 259, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 269, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 275, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 281, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 295, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 308, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 316, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 332, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 391, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 407, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 423, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 441, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 452, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_basic_node", - "name": "basic_node", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 151, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_node", - "name": "node", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 185, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_make_control", - "name": "make_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state_handler", - "name": "state_handler", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 9, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 282, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 286, - "line_end": 333, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 339, - "line_end": 339, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 342, - "line_end": 345, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 348, - "line_end": 352, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 366, - "line_end": 377, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_on", - "name": "on", - "symbol_type": "Class", - "file_path": "", - "line_start": 370, - "line_end": 376, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_store_content", - "name": "store_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_remove_content", - "name": "remove_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 384, - "line_end": 392, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fold_one", - "name": "fold_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 395, - "line_end": 408, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_discard_empty", - "name": "discard_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 411, - "line_end": 424, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree_to_dot.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/parse_tree_to_dot.hpp", - "language": "cpp", - "size_bytes": 3170, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.659398183Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_dot_node", - "name": "print_dot_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 97, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_dot", - "name": "print_dot", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 107, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peg.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/peg.hpp", - "language": "cpp", - "size_bytes": 3548, - "total_lines": 121, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.661686460Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_AND", - "name": "AND", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Char", - "name": "Char", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Class", - "name": "Class", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 6, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CLOSE", - "name": "CLOSE", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Comment", - "name": "Comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Definition", - "name": "Definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DOT", - "name": "DOT", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EndOfFile", - "name": "EndOfFile", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EndOfLine", - "name": "EndOfLine", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Expression", - "name": "Expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QUESTION", - "name": "QUESTION", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IdentCont", - "name": "IdentCont", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Identifier", - "name": "Identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IdentStart", - "name": "IdentStart", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LEFTARROW", - "name": "LEFTARROW", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Literal", - "name": "Literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NOT", - "name": "NOT", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_OPEN", - "name": "OPEN", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PLUS", - "name": "PLUS", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Prefix", - "name": "Prefix", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Primary", - "name": "Primary", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Range", - "name": "Range", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Sequence", - "name": "Sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SLASH", - "name": "SLASH", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Space", - "name": "Space", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Spacing", - "name": "Spacing", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_STAR", - "name": "STAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Suffix", - "name": "Suffix", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Grammar", - "name": "Grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Definition", - "name": "Definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Expression", - "name": "Expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Sequence", - "name": "Sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 6, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Prefix", - "name": "Prefix", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Suffix", - "name": "Suffix", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 6, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Primary", - "name": "Primary", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 6, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Identifier", - "name": "Identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IdentStart", - "name": "IdentStart", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IdentCont", - "name": "IdentCont", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Literal", - "name": "Literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 6, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Class", - "name": "Class", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 6, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Range", - "name": "Range", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 6, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Char", - "name": "Char", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 96, - "column_start": 6, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LEFTARROW", - "name": "LEFTARROW", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SLASH", - "name": "SLASH", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AND", - "name": "AND", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 6, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NOT", - "name": "NOT", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 6, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QUESTION", - "name": "QUESTION", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_STAR", - "name": "STAR", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PLUS", - "name": "PLUS", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_OPEN", - "name": "OPEN", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CLOSE", - "name": "CLOSE", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DOT", - "name": "DOT", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 6, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Spacing", - "name": "Spacing", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Comment", - "name": "Comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Space", - "name": "Space", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EndOfLine", - "name": "EndOfLine", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 6, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EndOfFile", - "name": "EndOfFile", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 6, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "predicates.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/predicates.hpp", - "language": "cpp", - "size_bytes": 4364, - "total_lines": 126, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.663649954Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 85, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_predicates_and_test", - "name": "predicates_and_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not_test", - "name": "predicate_not_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or_test", - "name": "predicates_or_test", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates", - "name": "predicates", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 86, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_and", - "name": "predicates_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 33, - "column_end": 141, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not", - "name": "predicate_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 29, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or", - "name": "predicates_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 33, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_and", - "name": "predicates_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 33, - "column_end": 141, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate_not", - "name": "predicate_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 29, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicates_or", - "name": "predicates_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 33, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "print.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/print.hpp", - "language": "cpp", - "size_bytes": 1786, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.665426854Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 43, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_subs", - "name": "print_subs", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_sub", - "name": "print_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_names", - "name": "print_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_debug", - "name": "print_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_print_names", - "name": "print_names", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_debug", - "name": "print_debug", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "print_coverage.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/print_coverage.hpp", - "language": "cpp", - "size_bytes": 1639, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.667124335Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "proto3.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/proto3.hpp", - "language": "cpp", - "size_bytes": 8328, - "total_lines": 142, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.670571353Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_comment_sl", - "name": "comment_sl", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_ml", - "name": "comment_ml", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sp", - "name": "sp", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sps", - "name": "sps", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comma", - "name": "comma", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dot", - "name": "dot", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_equ", - "name": "equ", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semi", - "name": "semi", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message", - "name": "message", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extend", - "name": "extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident_first", - "name": "ident_first", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident_other", - "name": "ident_other", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ident", - "name": "ident", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_full_ident", - "name": "full_ident", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_lit", - "name": "hex_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oct_lit", - "name": "oct_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dec_lit", - "name": "dec_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int_lit", - "name": "int_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sign", - "name": "sign", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_float_lit", - "name": "float_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bool_lit", - "name": "bool_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 51, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hex_escape", - "name": "hex_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oct_escape", - "name": "oct_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_escape", - "name": "char_escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escape", - "name": "escape", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_value", - "name": "char_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_impl", - "name": "str_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_lit", - "name": "str_lit", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_constant", - "name": "constant", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option_name", - "name": "option_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 118, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bool_type", - "name": "bool_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bytes_type", - "name": "bytes_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_double_type", - "name": "double_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_float_type", - "name": "float_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_type", - "name": "string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int32_type", - "name": "int32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_int64_type", - "name": "int64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sint32_type", - "name": "sint32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sint64_type", - "name": "sint64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uint32_type", - "name": "uint32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_uint64_type", - "name": "uint64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fixed32_type", - "name": "fixed32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fixed64_type", - "name": "fixed64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sfixed32_type", - "name": "sfixed32_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sfixed64_type", - "name": "sfixed64_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_builtin_type", - "name": "builtin_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 3, - "column_end": 228, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_type", - "name": "defined_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type", - "name": "type", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_option", - "name": "field_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_options", - "name": "field_options", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 3, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_name", - "name": "field_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_number", - "name": "field_number", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field", - "name": "field", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 3, - "column_end": 237, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_name", - "name": "oneof_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 3, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_field", - "name": "oneof_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof_body", - "name": "oneof_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_oneof", - "name": "oneof", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_type", - "name": "key_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 217, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_map_name", - "name": "map_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_map_field", - "name": "map_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 3, - "column_end": 214, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_field_names", - "name": "field_names", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reserved", - "name": "reserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_name", - "name": "enum_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 3, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_value_option", - "name": "enum_value_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_field", - "name": "enum_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 167, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_body", - "name": "enum_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 3, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enum_def", - "name": "enum_def", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_thing", - "name": "message_thing", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message_body", - "name": "message_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 3, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_message", - "name": "message", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_extend", - "name": "extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_package", - "name": "package", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 3, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import_option", - "name": "import_option", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_import", - "name": "import", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 3, - "column_end": 117, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_name", - "name": "rpc_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_type", - "name": "rpc_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 3, - "column_end": 134, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc_options", - "name": "rpc_options", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rpc", - "name": "rpc", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 3, - "column_end": 181, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_service_name", - "name": "service_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_service", - "name": "service", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 3, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_body", - "name": "body", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quote", - "name": "quote", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_head", - "name": "head", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 3, - "column_end": 150, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_proto", - "name": "proto", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "raw_string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/raw_string.hpp", - "language": "cpp", - "size_bytes": 8496, - "total_lines": 232, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.673063123Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 54, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 90, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 126, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 154, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raw_string_open", - "name": "raw_string_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at_raw_string_close", - "name": "at_raw_string_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 91, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raw_string_until", - "name": "raw_string_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 155, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raw_string", - "name": "raw_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 218, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_content", - "name": "content", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "remove_first_state.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/remove_first_state.hpp", - "language": "cpp", - "size_bytes": 3023, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.675030473Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_first_state", - "name": "remove_first_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "remove_last_states.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/remove_last_states.hpp", - "language": "cpp", - "size_bytes": 6369, - "total_lines": 121, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.677415535Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start_impl", - "name": "start_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success_impl", - "name": "success_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure_impl", - "name": "failure_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_impl", - "name": "raise_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_impl", - "name": "unwind_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_impl", - "name": "apply_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_impl", - "name": "apply0_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_last_states", - "name": "remove_last_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 114, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_one_min_max.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/rep_one_min_max.hpp", - "language": "cpp", - "size_bytes": 2791, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.679353121Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 51, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 76, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_one_min_max", - "name": "rep_one_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_one_min_max", - "name": "rep_one_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/rep_string.hpp", - "language": "cpp", - "size_bytes": 1071, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.680983571Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_rep_string", - "name": "make_rep_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_string", - "name": "rep_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "separated_seq.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/separated_seq.hpp", - "language": "cpp", - "size_bytes": 1112, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.682536423Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_sep", - "name": "sep", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 6, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_separated_seq", - "name": "separated_seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "shuffle_states.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/shuffle_states.hpp", - "language": "cpp", - "size_bytes": 9461, - "total_lines": 193, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.685278298Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start_impl", - "name": "start_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success_impl", - "name": "success_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure_impl", - "name": "failure_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise_impl", - "name": "raise_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_impl", - "name": "unwind_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 130, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_impl", - "name": "apply_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 144, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 158, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_impl", - "name": "apply0_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 165, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rotate_left", - "name": "rotate_left", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rotate_right", - "name": "rotate_right", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reverse", - "name": "reverse", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_shuffle_states", - "name": "shuffle_states", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 180, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "state_control.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/state_control.hpp", - "language": "cpp", - "size_bytes": 4764, - "total_lines": 122, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.687744066Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 38, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 53, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 68, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 93, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 113, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state_control", - "name": "state_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 118, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 114, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/to_string.hpp", - "language": "cpp", - "size_bytes": 851, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.689458603Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_to_string", - "name": "to_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 6, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "trace.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/trace.hpp", - "language": "cpp", - "size_bytes": 8838, - "total_lines": 227, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.691740538Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_tracer", - "name": "tracer", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 148, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 154, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 160, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_standard_trace", - "name": "standard_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_complete_trace", - "name": "complete_trace", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 219, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_tracer_traits", - "name": "tracer_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tracer", - "name": "tracer", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 171, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trace", - "name": "trace", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 220, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint16.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/uint16.hpp", - "language": "cpp", - "size_bytes": 4714, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.693988873Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint32.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/uint32.hpp", - "language": "cpp", - "size_bytes": 4714, - "total_lines": 62, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.696253708Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint64.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/uint64.hpp", - "language": "cpp", - "size_bytes": 4715, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.698318327Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 38, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 53, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 38, - "column_end": 138, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 53, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 38, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 38, - "column_end": 158, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 55, - "column_end": 174, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 70, - "column_end": 194, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 55, - "column_end": 170, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 70, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 55, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 55, - "column_end": 190, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/uint8.hpp", - "language": "cpp", - "size_bytes": 2426, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.700211662Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 34, - "column_end": 134, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 48, - "column_end": 153, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 34, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 48, - "column_end": 149, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 34, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 34, - "column_end": 150, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_one", - "name": "mask_not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 50, - "column_end": 165, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_not_range", - "name": "mask_not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 64, - "column_end": 184, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_one", - "name": "mask_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 50, - "column_end": 161, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_range", - "name": "mask_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 64, - "column_end": 180, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_ranges", - "name": "mask_ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 50, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mask_string", - "name": "mask_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 50, - "column_end": 181, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unescape.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/unescape.hpp", - "language": "cpp", - "size_bytes": 7004, - "total_lines": 214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.702400205Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_utf8_append_utf32", - "name": "utf8_append_utf32", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unhex_char", - "name": "unhex_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unhex_string", - "name": "unhex_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_one", - "name": "apply_one", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_two", - "name": "apply_two", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 155, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 162, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 173, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 209, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_append_all", - "name": "append_all", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 108, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_c", - "name": "unescape_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 139, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_u", - "name": "unescape_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 164, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_x", - "name": "unescape_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 174, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unescape_j", - "name": "unescape_j", - "symbol_type": "Class", - "file_path": "", - "line_start": 184, - "line_end": 210, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/uri.hpp", - "language": "cpp", - "size_bytes": 5135, - "total_lines": 111, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.705277342Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_dec_octet", - "name": "dec_octet", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPv4address", - "name": "IPv4address", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_h16", - "name": "h16", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ls32", - "name": "ls32", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dcolon", - "name": "dcolon", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPv6address", - "name": "IPv6address", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_gen_delims", - "name": "gen_delims", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sub_delims", - "name": "sub_delims", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unreserved", - "name": "unreserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reserved", - "name": "reserved", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IPvFuture", - "name": "IPvFuture", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 124, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IP_literal", - "name": "IP_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pct_encoded", - "name": "pct_encoded", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pchar", - "name": "pchar", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_query", - "name": "query", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fragment", - "name": "fragment", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment", - "name": "segment", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_nz", - "name": "segment_nz", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_segment_nz_nc", - "name": "segment_nz_nc", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_abempty", - "name": "path_abempty", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_absolute", - "name": "path_absolute", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_noscheme", - "name": "path_noscheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_rootless", - "name": "path_rootless", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path_empty", - "name": "path_empty", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_path", - "name": "path", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_reg_name", - "name": "reg_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_port", - "name": "port", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_host", - "name": "host", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_userinfo", - "name": "userinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_userinfo", - "name": "opt_userinfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_authority", - "name": "authority", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_scheme", - "name": "scheme", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 3, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hier_part", - "name": "hier_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_part", - "name": "relative_part", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_relative_ref", - "name": "relative_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_URI", - "name": "URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_URI_reference", - "name": "URI_reference", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_absolute_URI", - "name": "absolute_URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/utf16.hpp", - "language": "cpp", - "size_bytes": 2950, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.707211704Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/contrib/utf32.hpp", - "language": "cpp", - "size_bytes": 2950, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.708970156Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 33, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 43, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 33, - "column_end": 132, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 43, - "column_end": 147, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 33, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 33, - "column_end": 152, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstream_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/cstream_input.hpp", - "language": "cpp", - "size_bytes": 932, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.710990103Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstream_input", - "name": "cstream_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstream_input", - "name": "cstream_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "demangle.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/demangle.hpp", - "language": "cpp", - "size_bytes": 4571, - "total_lines": 182, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.712804586Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_demangle", - "name": "demangle", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 159, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "disable_action.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/disable_action.hpp", - "language": "cpp", - "size_bytes": 968, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.714432307Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_disable_action", - "name": "disable_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/discard_input.hpp", - "language": "cpp", - "size_bytes": 1007, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.715949Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input", - "name": "discard_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input_on_failure.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/discard_input_on_failure.hpp", - "language": "cpp", - "size_bytes": 1079, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.717539065Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input_on_failure", - "name": "discard_input_on_failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input_on_success.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/discard_input_on_success.hpp", - "language": "cpp", - "size_bytes": 1078, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.719124432Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard_input_on_success", - "name": "discard_input_on_success", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_action.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/enable_action.hpp", - "language": "cpp", - "size_bytes": 964, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.720681098Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_enable_action", - "name": "enable_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/eol.hpp", - "language": "cpp", - "size_bytes": 954, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.722139926Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_eol", - "name": "eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cr", - "name": "cr", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cr_crlf", - "name": "cr_crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_crlf", - "name": "crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lf", - "name": "lf", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lf_crlf", - "name": "lf_crlf", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eol_pair.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/eol_pair.hpp", - "language": "cpp", - "size_bytes": 391, - "total_lines": 18, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.723629172Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/file_input.hpp", - "language": "cpp", - "size_bytes": 1145, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.725149595Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_input", - "name": "file_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_input", - "name": "file_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/action.hpp", - "language": "cpp", - "size_bytes": 1515, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.727913806Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/action_input.hpp", - "language": "cpp", - "size_bytes": 2657, - "total_lines": 106, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.729584893Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 29, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_action_input", - "name": "action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_input", - "name": "action_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 102, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "any.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/any.hpp", - "language": "cpp", - "size_bytes": 1759, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.731297440Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 70, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/apply.hpp", - "language": "cpp", - "size_bytes": 1556, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.732884135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply0.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/apply0.hpp", - "language": "cpp", - "size_bytes": 1357, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.734503006Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply0", - "name": "apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply0_single.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/apply0_single.hpp", - "language": "cpp", - "size_bytes": 1049, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.736120592Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply0_single", - "name": "apply0_single", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apply_single.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/apply_single.hpp", - "language": "cpp", - "size_bytes": 1154, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.737743361Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_apply_single", - "name": "apply_single", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "at.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/at.hpp", - "language": "cpp", - "size_bytes": 1407, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.739378921Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at", - "name": "at", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bof.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/bof.hpp", - "language": "cpp", - "size_bytes": 698, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.740933090Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bof", - "name": "bof", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/bol.hpp", - "language": "cpp", - "size_bytes": 699, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.742446369Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bol", - "name": "bol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bump.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/bump.hpp", - "language": "cpp", - "size_bytes": 1086, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.744085922Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bump", - "name": "bump", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bump_in_this_line", - "name": "bump_in_this_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_bump_to_next_line", - "name": "bump_to_next_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bump_help.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/bump_help.hpp", - "language": "cpp", - "size_bytes": 658, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.745617944Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_bump_help", - "name": "bump_help", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bytes.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/bytes.hpp", - "language": "cpp", - "size_bytes": 961, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.747316521Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bytes", - "name": "bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/control.hpp", - "language": "cpp", - "size_bytes": 1530, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.748947181Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "crlf_eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/crlf_eol.hpp", - "language": "cpp", - "size_bytes": 862, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.750501867Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_crlf_eol", - "name": "crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cr_crlf_eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/cr_crlf_eol.hpp", - "language": "cpp", - "size_bytes": 886, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.752073231Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cr_crlf_eol", - "name": "cr_crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cr_eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/cr_eol.hpp", - "language": "cpp", - "size_bytes": 812, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.753706632Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cr_eol", - "name": "cr_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstream_reader.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/cstream_reader.hpp", - "language": "cpp", - "size_bytes": 1512, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.755328854Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstream_reader", - "name": "cstream_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstream_reader", - "name": "cstream_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cstring_reader.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/cstring_reader.hpp", - "language": "cpp", - "size_bytes": 951, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.756920563Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_cstring_reader", - "name": "cstring_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 20, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_cstring_reader", - "name": "cstring_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "dependent_false.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/dependent_false.hpp", - "language": "cpp", - "size_bytes": 432, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.758407628Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "disable.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/disable.hpp", - "language": "cpp", - "size_bytes": 1362, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.759988495Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_disable", - "name": "disable", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/discard.hpp", - "language": "cpp", - "size_bytes": 783, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.761530864Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_discard", - "name": "discard", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/enable.hpp", - "language": "cpp", - "size_bytes": 1353, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.763140273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_enable", - "name": "enable", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_control.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/enable_control.hpp", - "language": "cpp", - "size_bytes": 749, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.764751980Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eof.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/eof.hpp", - "language": "cpp", - "size_bytes": 720, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.766226107Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eof", - "name": "eof", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/eol.hpp", - "language": "cpp", - "size_bytes": 766, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.767774998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eol", - "name": "eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "eolf.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/eolf.hpp", - "language": "cpp", - "size_bytes": 815, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.769362546Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eolf", - "name": "eolf", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "failure.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/failure.hpp", - "language": "cpp", - "size_bytes": 717, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.770894842Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_failure", - "name": "failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "filesystem.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/filesystem.hpp", - "language": "cpp", - "size_bytes": 1365, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.772403095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_mapper_posix.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/file_mapper_posix.hpp", - "language": "cpp", - "size_bytes": 4148, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.774331094Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 85, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 110, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 132, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 145, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_opener", - "name": "file_opener", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stat", - "name": "stat", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 9, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_mapper", - "name": "file_mapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 155, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_mapper_win32.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/file_mapper_win32.hpp", - "language": "cpp", - "size_bytes": 7551, - "total_lines": 243, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.776394217Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_opener", - "name": "file_opener", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 115, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_win32_file_mapper", - "name": "win32_file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_win32_file_mapper", - "name": "win32_file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_win32_file_mapper", - "name": "win32_file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_win32_file_mapper", - "name": "win32_file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 6, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 168, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 195, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 197, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_mapper", - "name": "file_mapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 203, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 211, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 216, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 224, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 229, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 234, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_opener", - "name": "file_opener", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 116, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_win32_file_mapper", - "name": "win32_file_mapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 169, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_mapper", - "name": "file_mapper", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 239, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_reader.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/file_reader.hpp", - "language": "cpp", - "size_bytes": 4472, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.778463556Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_reader", - "name": "file_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_reader", - "name": "file_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_reader", - "name": "file_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_reader", - "name": "file_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 6, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 6, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 143, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_close", - "name": "file_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_reader", - "name": "file_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 148, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_apply.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/has_apply.hpp", - "language": "cpp", - "size_bytes": 694, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.780182846Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_apply0.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/has_apply0.hpp", - "language": "cpp", - "size_bytes": 699, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.781712424Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_match.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/has_match.hpp", - "language": "cpp", - "size_bytes": 1300, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.783300394Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "has_unwind.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/has_unwind.hpp", - "language": "cpp", - "size_bytes": 593, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.784848863Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "identifier.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/identifier.hpp", - "language": "cpp", - "size_bytes": 663, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.786529918Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_apply.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/if_apply.hpp", - "language": "cpp", - "size_bytes": 1780, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.788207843Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_apply", - "name": "if_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_must.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/if_must.hpp", - "language": "cpp", - "size_bytes": 1539, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.789997176Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_must", - "name": "if_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_must_else.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/if_must_else.hpp", - "language": "cpp", - "size_bytes": 683, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.791552894Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "if_then_else.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/if_then_else.hpp", - "language": "cpp", - "size_bytes": 1643, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.793204964Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_if_then_else", - "name": "if_then_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input_pair.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/input_pair.hpp", - "language": "cpp", - "size_bytes": 585, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.794772313Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_input_pair", - "name": "input_pair", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istream_reader.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/istream_reader.hpp", - "language": "cpp", - "size_bytes": 1236, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.796422866Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_istream_reader", - "name": "istream_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istream_reader", - "name": "istream_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istring.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/istring.hpp", - "language": "cpp", - "size_bytes": 2147, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.798167348Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ichar_equal", - "name": "ichar_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_istring_equal", - "name": "istring_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring", - "name": "istring", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iterator.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/iterator.hpp", - "language": "cpp", - "size_bytes": 1207, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.799797387Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 6, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iterator", - "name": "iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lf_crlf_eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/lf_crlf_eol.hpp", - "language": "cpp", - "size_bytes": 1036, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.801391120Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lf_crlf_eol", - "name": "lf_crlf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lf_eol.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/lf_eol.hpp", - "language": "cpp", - "size_bytes": 812, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.803100190Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lf_eol", - "name": "lf_eol", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/list.hpp", - "language": "cpp", - "size_bytes": 464, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.804627524Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_must.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/list_must.hpp", - "language": "cpp", - "size_bytes": 627, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.806132564Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_tail.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/list_tail.hpp", - "language": "cpp", - "size_bytes": 539, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.807805084Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "list_tail_pad.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/list_tail_pad.hpp", - "language": "cpp", - "size_bytes": 600, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.809361635Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "marker.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/marker.hpp", - "language": "cpp", - "size_bytes": 1871, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.811046398Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 6, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_marker", - "name": "marker", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 6, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_marker", - "name": "marker", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 76, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "minus.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/minus.hpp", - "language": "cpp", - "size_bytes": 506, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.812560309Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "missing_apply.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/missing_apply.hpp", - "language": "cpp", - "size_bytes": 926, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.814075726Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_missing_apply", - "name": "missing_apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "missing_apply0.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/missing_apply0.hpp", - "language": "cpp", - "size_bytes": 826, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.815608339Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_missing_apply0", - "name": "missing_apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "must.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/must.hpp", - "language": "cpp", - "size_bytes": 1879, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.817278510Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_must", - "name": "must", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "not_at.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/not_at.hpp", - "language": "cpp", - "size_bytes": 1440, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.818966835Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_not_at", - "name": "not_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "one.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/one.hpp", - "language": "cpp", - "size_bytes": 1687, - "total_lines": 66, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.820579342Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "opt.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/opt.hpp", - "language": "cpp", - "size_bytes": 1377, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.822291847Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_opt", - "name": "opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pad.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/pad.hpp", - "language": "cpp", - "size_bytes": 493, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.823741404Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pad_opt.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/pad_opt.hpp", - "language": "cpp", - "size_bytes": 506, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.825303086Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "path_to_string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/path_to_string.hpp", - "language": "cpp", - "size_bytes": 755, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.826794724Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_path_to_string", - "name": "path_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_char.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/peek_char.hpp", - "language": "cpp", - "size_bytes": 743, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.828247041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_char", - "name": "peek_char", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peek_utf8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/peek_utf8.hpp", - "language": "cpp", - "size_bytes": 2823, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.829924872Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_peek", - "name": "peek", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_peek_impl", - "name": "peek_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_peek_utf8", - "name": "peek_utf8", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/pegtl_string.hpp", - "language": "cpp", - "size_bytes": 3710, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.831694703Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_join", - "name": "string_join", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_at", - "name": "string_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_max_length", - "name": "string_max_length", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plus.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/plus.hpp", - "language": "cpp", - "size_bytes": 1704, - "total_lines": 60, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.833344075Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 53, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "raise.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/raise.hpp", - "language": "cpp", - "size_bytes": 1235, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.834911183Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raise", - "name": "raise", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "range.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/range.hpp", - "language": "cpp", - "size_bytes": 1695, - "total_lines": 60, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.836670278Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ranges.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/ranges.hpp", - "language": "cpp", - "size_bytes": 2601, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.838456197Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_validate_range", - "name": "validate_range", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test", - "name": "test", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rematch.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rematch.hpp", - "language": "cpp", - "size_bytes": 2440, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.840278678Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rematch", - "name": "rematch", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rep.hpp", - "language": "cpp", - "size_bytes": 1701, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.841967150Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep", - "name": "rep", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_min.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rep_min.hpp", - "language": "cpp", - "size_bytes": 538, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.843548091Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_min_max.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rep_min_max.hpp", - "language": "cpp", - "size_bytes": 2376, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.845246910Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_min_max", - "name": "rep_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rep_opt.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rep_opt.hpp", - "language": "cpp", - "size_bytes": 1601, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.846900002Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rep_opt", - "name": "rep_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/require.hpp", - "language": "cpp", - "size_bytes": 952, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.848412649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "result_on_found.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/result_on_found.hpp", - "language": "cpp", - "size_bytes": 447, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.849884838Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rules.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/rules.hpp", - "language": "cpp", - "size_bytes": 1439, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.851441600Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "seq.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/seq.hpp", - "language": "cpp", - "size_bytes": 1566, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.853197649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sor.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/sor.hpp", - "language": "cpp", - "size_bytes": 1913, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.855100393Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/star.hpp", - "language": "cpp", - "size_bytes": 1364, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.857535237Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_star", - "name": "star", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "star_must.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/star_must.hpp", - "language": "cpp", - "size_bytes": 618, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.859117379Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "state.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/state.hpp", - "language": "cpp", - "size_bytes": 2290, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.860847626Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/string.hpp", - "language": "cpp", - "size_bytes": 1662, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.862514099Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unsafe_equals", - "name": "unsafe_equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "success.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/success.hpp", - "language": "cpp", - "size_bytes": 716, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.864109506Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_success", - "name": "success", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "try_catch_type.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/try_catch_type.hpp", - "language": "cpp", - "size_bytes": 1883, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.865708200Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_try_catch_type", - "name": "try_catch_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "until.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/until.hpp", - "language": "cpp", - "size_bytes": 2486, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.867687962Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 52, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_until", - "name": "until", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 53, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unwind_guard.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/internal/unwind_guard.hpp", - "language": "cpp", - "size_bytes": 941, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.869298846Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_unwind_guard", - "name": "unwind_guard", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "istream_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/istream_input.hpp", - "language": "cpp", - "size_bytes": 936, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.871295792Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_istream_input", - "name": "istream_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_istream_input", - "name": "istream_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "match.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/match.hpp", - "language": "cpp", - "size_bytes": 6930, - "total_lines": 173, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.873648940Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match_no_control", - "name": "match_no_control", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_no_control", - "name": "match_no_control", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_control_unwind", - "name": "match_control_unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 165, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/memory_input.hpp", - "language": "cpp", - "size_bytes": 12037, - "total_lines": 378, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.876528804Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 9, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 9, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 116, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 128, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 152, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 160, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 9, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 9, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 173, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 178, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 183, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 188, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 198, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 203, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 210, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 216, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 259, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 6, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 274, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_memory_input", - "name": "memory_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 277, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 279, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 280, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 285, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 290, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 295, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 300, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 310, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_restart", - "name": "restart", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 323, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 330, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 332, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 334, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mark", - "name": "mark", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 340, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 345, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 350, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 359, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_60", - "name": "function_60", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 365, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_memory_input_base", - "name": "memory_input_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 138, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 226, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_memory_input", - "name": "memory_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 371, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mmap_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/mmap_input.hpp", - "language": "cpp", - "size_bytes": 2138, - "total_lines": 79, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.878447657Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mmap_holder", - "name": "mmap_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_holder", - "name": "mmap_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_holder", - "name": "mmap_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 9, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mmap_input", - "name": "mmap_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_mmap_holder", - "name": "mmap_holder", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_mmap_input", - "name": "mmap_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "must_if.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/must_if.hpp", - "language": "cpp", - "size_bytes": 2265, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.880147350Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 62, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_must_if", - "name": "must_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 64, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "normal.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/normal.hpp", - "language": "cpp", - "size_bytes": 3429, - "total_lines": 99, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.881985128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 36, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 40, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 44, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 76, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 94, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_normal", - "name": "normal", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 95, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nothing.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/nothing.hpp", - "language": "cpp", - "size_bytes": 395, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.883592726Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_nothing", - "name": "nothing", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/parse.hpp", - "language": "cpp", - "size_bytes": 2102, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.885262961Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_nested", - "name": "parse_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_error.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/parse_error.hpp", - "language": "cpp", - "size_bytes": 2949, - "total_lines": 119, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.887127985Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 47, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 91, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 56, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 115, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/position.hpp", - "language": "cpp", - "size_bytes": 2454, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.888899607Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 6, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 32, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 6, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 6, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 56, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 6, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 94, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_position", - "name": "position", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "read_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/read_input.hpp", - "language": "cpp", - "size_bytes": 1642, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.890572959Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_read_input", - "name": "read_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 6, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_read_input", - "name": "read_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require_apply.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/require_apply.hpp", - "language": "cpp", - "size_bytes": 341, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.892046591Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_require_apply", - "name": "require_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "require_apply0.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/require_apply0.hpp", - "language": "cpp", - "size_bytes": 344, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.893474265Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_require_apply0", - "name": "require_apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rewind_mode.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/rewind_mode.hpp", - "language": "cpp", - "size_bytes": 395, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.894931092Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rules.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/rules.hpp", - "language": "cpp", - "size_bytes": 5052, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.896849249Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 71, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply", - "name": "apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 35, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply0", - "name": "apply0", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 35, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at", - "name": "at", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 33, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bof", - "name": "bof", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bol", - "name": "bol", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bytes", - "name": "bytes", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 28, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 72, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_disable", - "name": "disable", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 33, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_discard", - "name": "discard", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_enable", - "name": "enable", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 33, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_eof", - "name": "eof", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_eolf", - "name": "eolf", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_failure", - "name": "failure", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_apply", - "name": "if_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 50, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_then_else", - "name": "if_then_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 59, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 64, - "column_end": 130, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 43, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_tail", - "name": "list_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 64, - "column_end": 127, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 43, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_minus", - "name": "minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 38, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_at", - "name": "not_at", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 33, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt", - "name": "opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad", - "name": "pad", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 66, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad_opt", - "name": "pad_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 43, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 48, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rematch", - "name": "rematch", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 48, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep", - "name": "rep", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 47, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_max", - "name": "rep_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 47, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_min", - "name": "rep_min", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 62, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_min_max", - "name": "rep_min_max", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 61, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rep_opt", - "name": "rep_opt", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 47, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_require", - "name": "require", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 31, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seq", - "name": "seq", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor", - "name": "sor", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 33, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star", - "name": "star", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 48, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 49, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_success", - "name": "success", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_until", - "name": "until", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 48, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_must", - "name": "if_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 48, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_must_else", - "name": "if_must_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 59, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_must", - "name": "list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 64, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 43, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_must", - "name": "must", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 33, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_opt_must", - "name": "opt_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 48, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_raise", - "name": "raise", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 34, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_star_must", - "name": "star_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 48, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch", - "name": "try_catch", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 33, - "column_end": 104, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_try_catch_type", - "name": "try_catch_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 53, - "column_end": 144, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_input.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/string_input.hpp", - "language": "cpp", - "size_bytes": 1891, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.898620851Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_holder", - "name": "string_holder", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 9, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_input", - "name": "string_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 6, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 6, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 6, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 6, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_holder", - "name": "string_holder", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_input", - "name": "string_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tracking_mode.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/tracking_mode.hpp", - "language": "cpp", - "size_bytes": 380, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.900209462Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_list.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/type_list.hpp", - "language": "cpp", - "size_bytes": 1066, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.901787401Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_type_list", - "name": "type_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_list_concat", - "name": "type_list_concat", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/utf8.hpp", - "language": "cpp", - "size_bytes": 1419, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.903404428Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_any", - "name": "any", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bom", - "name": "bom", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_one", - "name": "not_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 30, - "column_end": 129, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_range", - "name": "not_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 40, - "column_end": 144, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_one", - "name": "one", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 30, - "column_end": 125, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 40, - "column_end": 140, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ranges", - "name": "ranges", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 30, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string", - "name": "string", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 30, - "column_end": 145, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "version.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/version.hpp", - "language": "cpp", - "size_bytes": 343, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.904867198Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "visit.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl/visit.hpp", - "language": "cpp", - "size_bytes": 2775, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.906803678Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_visit", - "name": "visit", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_visit", - "name": "visit", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_contains", - "name": "contains", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_filter", - "name": "filter", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_visit_list", - "name": "visit_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/include/tao/pegtl.hpp", - "language": "cpp", - "size_bytes": 1288, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.908856496Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abnf2pegtl.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/abnf2pegtl.cpp", - "language": "cpp", - "size_bytes": 29921, - "total_lines": 812, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.918230179Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_find_rule", - "name": "find_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 150, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_rule", - "name": "find_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append_char", - "name": "append_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 169, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_leading_zeroes", - "name": "remove_leading_zeroes", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 178, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_shift", - "name": "shift", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 185, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 397, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 414, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string_unwrap_seq", - "name": "to_string_unwrap_seq", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 426, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_rulename", - "name": "get_rulename", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 436, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_rulename", - "name": "get_rulename", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 458, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_gen_val", - "name": "gen_val", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 472, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 479, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 554, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 580, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_stringifier", - "name": "make_stringifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 743, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 745, - "line_end": 749, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 751, - "line_end": 761, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 812, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_one_tag", - "name": "one_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 9, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_tag", - "name": "string_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 9, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_istring_tag", - "name": "istring_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 9, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CRLF", - "name": "CRLF", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 221, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_cont", - "name": "comment_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 9, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 9, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c_nl", - "name": "c_nl", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_req_c_nl", - "name": "req_c_nl", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c_wsp", - "name": "c_wsp", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 9, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rulename", - "name": "rulename", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 9, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string_cont", - "name": "quoted_string_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_string", - "name": "quoted_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_insensitive_string", - "name": "case_insensitive_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 9, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_case_sensitive_string", - "name": "case_sensitive_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 9, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_val", - "name": "char_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 9, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prose_val_cont", - "name": "prose_val_cont", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prose_val", - "name": "prose_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 9, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_gen_val", - "name": "gen_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 241, - "line_end": 247, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 12, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_range", - "name": "range", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 12, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_next_value", - "name": "next_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 12, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type", - "name": "type", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 246, - "column_start": 12, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_num_val_choice", - "name": "num_val_choice", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 9, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_num_val", - "name": "num_val", - "symbol_type": "Class", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alternation", - "name": "alternation", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 9, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option_close", - "name": "option_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_option", - "name": "option", - "symbol_type": "Class", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 9, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_group_close", - "name": "group_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_group", - "name": "group", - "symbol_type": "Class", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 9, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_element", - "name": "element", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 9, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repeat", - "name": "repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 9, - "column_end": 97, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repetition", - "name": "repetition", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 264, - "column_start": 9, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_req_repetition", - "name": "req_repetition", - "symbol_type": "Class", - "file_path": "", - "line_start": 265, - "line_end": 265, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_and_predicate", - "name": "and_predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_predicate", - "name": "not_predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 9, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_predicate", - "name": "predicate", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 9, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_concatenation", - "name": "concatenation", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 9, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_alternation", - "name": "alternation", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 9, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_as_op", - "name": "defined_as_op", - "symbol_type": "Class", - "file_path": "", - "line_start": 274, - "line_end": 274, - "column_start": 9, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_defined_as", - "name": "defined_as", - "symbol_type": "Class", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 9, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rule", - "name": "rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 276, - "column_start": 9, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rulelist", - "name": "rulelist", - "symbol_type": "Class", - "file_path": "", - "line_start": 277, - "line_end": 277, - "column_start": 9, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 318, - "line_end": 322, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 339, - "line_end": 366, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 375, - "line_end": 398, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 401, - "line_end": 415, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ccmp", - "name": "ccmp", - "symbol_type": "Class", - "file_path": "", - "line_start": 474, - "line_end": 480, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 487, - "line_end": 555, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stringifier", - "name": "stringifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 560, - "line_end": 581, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyze.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/analyze.cpp", - "language": "cpp", - "size_bytes": 532, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.920527042Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 0, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "calculator.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/calculator.cpp", - "language": "cpp", - "size_bytes": 10817, - "total_lines": 360, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.922900809Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 88, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stacks", - "name": "stacks", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 130, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_operators", - "name": "operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 164, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 177, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 223, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 247, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 309, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 321, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 330, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 360, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_op", - "name": "op", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stack", - "name": "stack", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 89, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stacks", - "name": "stacks", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 134, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators", - "name": "operators", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 181, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignored", - "name": "ignored", - "symbol_type": "Class", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix", - "name": "infix", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 248, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket", - "name": "bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_atomic", - "name": "atomic", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 293, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 300, - "line_end": 310, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 322, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 325, - "line_end": 331, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "chomsky_hierarchy.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/chomsky_hierarchy.cpp", - "language": "cpp", - "size_bytes": 3798, - "total_lines": 124, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.925087867Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_type_3", - "name": "type_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_2_recursive", - "name": "type_2_recursive", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_match_n", - "name": "match_n", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_2_with_state", - "name": "type_2_with_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_2_with_state", - "name": "action_2_with_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 70, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 80, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_1", - "name": "type_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_1", - "name": "action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csv1.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/csv1.cpp", - "language": "cpp", - "size_bytes": 3182, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.927548556Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 84, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_item", - "name": "value_item", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_list", - "name": "value_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_line", - "name": "value_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment_line", - "name": "comment_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file", - "name": "file", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 48, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control", - "name": "control", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 85, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csv2.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/csv2.cpp", - "language": "cpp", - "size_bytes": 5339, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.929880516Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 123, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_string", - "name": "print_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 138, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print", - "name": "print", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 149, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print", - "name": "print", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 159, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_print_tuple", - "name": "print_tuple", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 169, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_string_without", - "name": "string_without", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 22, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plain_value", - "name": "plain_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_quoted_value", - "name": "quoted_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 101, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 26, - "column_end": 121, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file", - "name": "file", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 26, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tuple_help", - "name": "tuple_help", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tuple_init", - "name": "tuple_init", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 73, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_result_data", - "name": "result_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 90, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 100, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 124, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_print_help", - "name": "print_help", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 150, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 160, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "double.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/double.hpp", - "language": "cpp", - "size_bytes": 1485, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.932093588Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_plus_minus", - "name": "plus_minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_dot", - "name": "dot", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inf", - "name": "inf", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 21, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nan", - "name": "nan", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_e", - "name": "e", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_p", - "name": "p", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exponent", - "name": "exponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decimal", - "name": "decimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexadecimal", - "name": "hexadecimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "dynamic_match.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/dynamic_match.cpp", - "language": "cpp", - "size_bytes": 3020, - "total_lines": 119, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.933980885Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_long_literal_id", - "name": "long_literal_id", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_open", - "name": "long_literal_open", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_mark", - "name": "long_literal_mark", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_close", - "name": "long_literal_close", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_literal_body", - "name": "long_literal_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 64, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "expression.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/expression.cpp", - "language": "cpp", - "size_bytes": 20869, - "total_lines": 520, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.937841686Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_prefix_info", - "name": "prefix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 52, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 76, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match_string_view", - "name": "match_string_view", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 131, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sorted_operator_vector", - "name": "sorted_operator_vector", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_operator_maps", - "name": "operator_maps", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 201, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 222, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 251, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 276, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 334, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 367, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 381, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 393, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 404, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 412, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 420, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 430, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 446, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 451, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 456, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 481, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 491, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_prefix_info", - "name": "prefix_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix_postfix_info", - "name": "infix_postfix_info", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operator_maps", - "name": "operator_maps", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 208, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_view_rule", - "name": "string_view_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 210, - "line_end": 223, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ignored", - "name": "ignored", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 6, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket_expression", - "name": "bracket_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 252, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_prefix_expression", - "name": "prefix_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 255, - "line_end": 277, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_infix_postfix_expression", - "name": "infix_postfix_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 280, - "line_end": 335, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_first_expression", - "name": "first_expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 338, - "line_end": 340, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 382, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_result", - "name": "result", - "symbol_type": "Class", - "file_path": "", - "line_start": 395, - "line_end": 459, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal", - "name": "literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 467, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 470, - "line_end": 472, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 475, - "line_end": 482, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 485, - "line_end": 492, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hello_world.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/hello_world.cpp", - "language": "cpp", - "size_bytes": 1173, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.940363620Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 30, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_prefix", - "name": "prefix", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "indent_aware.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/indent_aware.cpp", - "language": "cpp", - "size_bytes": 5745, - "total_lines": 223, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.942519449Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_entry", - "name": "entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 159, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 172, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 196, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 208, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_eq", - "name": "eq", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_co", - "name": "co", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hs", - "name": "hs", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ba", - "name": "ba", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bz", - "name": "bz", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sa", - "name": "sa", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s0", - "name": "s0", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s1", - "name": "s1", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_space_line", - "name": "space_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hash_line", - "name": "hash_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 3, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_trailer", - "name": "trailer", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 3, - "column_end": 113, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_def_line", - "name": "def_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 3, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_line", - "name": "if_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_else_line", - "name": "else_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_let_line", - "name": "let_line", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 3, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_indent", - "name": "indent", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_indented", - "name": "indented", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 3, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_something", - "name": "something", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nothing", - "name": "nothing", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_line", - "name": "line", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_entry", - "name": "entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 110, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 119, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 128, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_28", - "name": "class_28", - "symbol_type": "Class", - "file_path": "", - "line_start": 131, - "line_end": 137, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 151, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 160, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_31", - "name": "class_31", - "symbol_type": "Class", - "file_path": "", - "line_start": 163, - "line_end": 173, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 197, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_33", - "name": "class_33", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 209, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iri.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/iri.cpp", - "language": "cpp", - "size_bytes": 3056, - "total_lines": 101, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.944466507Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IRI", - "name": "IRI", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 14, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 14, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 14, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 14, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 73, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_analyze.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_analyze.cpp", - "language": "cpp", - "size_bytes": 622, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.946078750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_ast.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_ast.cpp", - "language": "cpp", - "size_bytes": 2136, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.947844210Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_build.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_build.cpp", - "language": "cpp", - "size_bytes": 5096, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.950066795Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 45, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 115, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 137, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 147, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_state", - "name": "json_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 37, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 88, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 97, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 116, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 125, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 138, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 148, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 158, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_classes.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_classes.hpp", - "language": "cpp", - "size_bytes": 4711, - "total_lines": 214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.952129286Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 6, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_base", - "name": "json_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array_json", - "name": "array_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean_json", - "name": "boolean_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null_json", - "name": "null_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_json", - "name": "number_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 122, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_escape", - "name": "json_escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 171, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string_json", - "name": "string_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 179, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object_json", - "name": "object_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 209, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_base", - "name": "json_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_array_json", - "name": "array_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boolean_json", - "name": "boolean_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 94, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_null_json", - "name": "null_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 107, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number_json", - "name": "number_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 123, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_string_json", - "name": "string_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 187, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_object_json", - "name": "object_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 210, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_count.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_count.cpp", - "language": "cpp", - "size_bytes": 1879, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.953972301Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_counter_data", - "name": "counter_data", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_counter_state", - "name": "counter_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_counter", - "name": "counter", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_coverage.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_coverage.cpp", - "language": "cpp", - "size_bytes": 1433, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.955696964Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_errors.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_errors.hpp", - "language": "cpp", - "size_bytes": 2520, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.957496422Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_parse.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_parse.cpp", - "language": "cpp", - "size_bytes": 1545, - "total_lines": 60, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.959256613Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 22, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_print_debug.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_print_debug.cpp", - "language": "cpp", - "size_bytes": 369, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.960922390Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_print_names.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_print_names.cpp", - "language": "cpp", - "size_bytes": 369, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.962440726Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_trace.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_trace.cpp", - "language": "cpp", - "size_bytes": 1381, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.964075707Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_unescape.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/json_unescape.hpp", - "language": "cpp", - "size_bytes": 1241, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.965901673Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_unescape_action", - "name": "json_unescape_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 29, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 14, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 14, - "column_end": 220, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 14, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/lua53.hpp", - "language": "cpp", - "size_bytes": 19799, - "total_lines": 340, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.970454270Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_short_comment", - "name": "short_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_long_string", - "name": "long_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_comment", - "name": "comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 3, - "column_end": 115, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sep", - "name": "sep", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_seps", - "name": "seps", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_and", - "name": "str_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_break", - "name": "str_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_do", - "name": "str_do", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_else", - "name": "str_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_elseif", - "name": "str_elseif", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_end", - "name": "str_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_false", - "name": "str_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_for", - "name": "str_for", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_function", - "name": "str_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 3, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_goto", - "name": "str_goto", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_if", - "name": "str_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_in", - "name": "str_in", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_local", - "name": "str_local", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_nil", - "name": "str_nil", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_not", - "name": "str_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_or", - "name": "str_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_repeat", - "name": "str_repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_return", - "name": "str_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 3, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_then", - "name": "str_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_true", - "name": "str_true", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 3, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_until", - "name": "str_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_str_while", - "name": "str_while", - "symbol_type": "Class", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 3, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key", - "name": "key", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_sor_keyword", - "name": "sor_keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 3, - "column_end": 258, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_and", - "name": "key_and", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_break", - "name": "key_break", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_do", - "name": "key_do", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_else", - "name": "key_else", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_elseif", - "name": "key_elseif", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_end", - "name": "key_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_false", - "name": "key_false", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_for", - "name": "key_for", - "symbol_type": "Class", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_function", - "name": "key_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 146, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_goto", - "name": "key_goto", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_if", - "name": "key_if", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_in", - "name": "key_in", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_local", - "name": "key_local", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_nil", - "name": "key_nil", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_not", - "name": "key_not", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_or", - "name": "key_or", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 3, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_repeat", - "name": "key_repeat", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_return", - "name": "key_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 3, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_then", - "name": "key_then", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_true", - "name": "key_true", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_until", - "name": "key_until", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_key_while", - "name": "key_while", - "symbol_type": "Class", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_keyword", - "name": "keyword", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 3, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_pad", - "name": "pad", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_single", - "name": "single", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_spaces", - "name": "spaces", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexbyte", - "name": "hexbyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 3, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decbyte", - "name": "decbyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 3, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unichar", - "name": "unichar", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 3, - "column_end": 156, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 3, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_regular", - "name": "regular", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_short_string", - "name": "short_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 3, - "column_end": 125, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal_string", - "name": "literal_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 179, - "line_end": 179, - "column_start": 3, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exponent", - "name": "exponent", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 3, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_three", - "name": "numeral_three", - "symbol_type": "Class", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 3, - "column_end": 131, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_two", - "name": "numeral_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral_one", - "name": "numeral_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_decimal", - "name": "decimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 191, - "line_end": 191, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hexadecimal", - "name": "hexadecimal", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 3, - "column_end": 145, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_numeral", - "name": "numeral", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 3, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_label_statement", - "name": "label_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 3, - "column_end": 118, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_goto_statement", - "name": "goto_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement", - "name": "statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 3, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 199, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_list", - "name": "name_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name_list_must", - "name": "name_list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_list_must", - "name": "expr_list_must", - "symbol_type": "Class", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 3, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement_return", - "name": "statement_return", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 3, - "column_end": 142, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement_list", - "name": "statement_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 208, - "line_end": 208, - "column_start": 3, - "column_end": 169, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_op_one", - "name": "op_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 3, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_op_two", - "name": "op_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 3, - "column_end": 114, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_one", - "name": "table_field_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 3, - "column_end": 172, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_two", - "name": "table_field_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 3, - "column_end": 121, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field", - "name": "table_field", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_field_list", - "name": "table_field_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 218, - "line_end": 218, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_table_constructor", - "name": "table_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 3, - "column_end": 148, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list_one", - "name": "parameter_list_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 221, - "line_end": 221, - "column_start": 3, - "column_end": 139, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parameter_list", - "name": "parameter_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 3, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_body", - "name": "function_body", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 3, - "column_end": 171, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_literal", - "name": "function_literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracket_expr", - "name": "bracket_expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 3, - "column_end": 121, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_args_one", - "name": "function_args_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 3, - "column_end": 146, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_args", - "name": "function_args", - "symbol_type": "Class", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 3, - "column_end": 100, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail_one", - "name": "variable_tail_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 3, - "column_end": 126, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail_two", - "name": "variable_tail_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 3, - "column_end": 155, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_tail", - "name": "variable_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_tail_one", - "name": "function_call_tail_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 3, - "column_end": 181, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_tail", - "name": "function_call_tail", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 3, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_head_one", - "name": "variable_head_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 3, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable_head", - "name": "variable_head", - "symbol_type": "Class", - "file_path": "", - "line_start": 240, - "line_end": 240, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call_head", - "name": "function_call_head", - "symbol_type": "Class", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable", - "name": "variable", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 3, - "column_end": 143, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_call", - "name": "function_call", - "symbol_type": "Class", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 3, - "column_end": 173, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_left_assoc", - "name": "left_assoc", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 3, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_right_assoc", - "name": "right_assoc", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 250, - "column_start": 3, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unary_operators", - "name": "unary_operators", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 255, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_ten", - "name": "expr_ten", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 3, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_thirteen", - "name": "expr_thirteen", - "symbol_type": "Class", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 3, - "column_end": 165, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_twelve", - "name": "expr_twelve", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 267, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_eleven", - "name": "expr_eleven", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unary_apply", - "name": "unary_apply", - "symbol_type": "Class", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_ten", - "name": "expr_ten", - "symbol_type": "Class", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_nine", - "name": "operators_nine", - "symbol_type": "Class", - "file_path": "", - "line_start": 271, - "line_end": 274, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_nine", - "name": "expr_nine", - "symbol_type": "Class", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_eight", - "name": "operators_eight", - "symbol_type": "Class", - "file_path": "", - "line_start": 276, - "line_end": 277, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_eight", - "name": "expr_eight", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_seven", - "name": "expr_seven", - "symbol_type": "Class", - "file_path": "", - "line_start": 279, - "line_end": 279, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_six", - "name": "operators_six", - "symbol_type": "Class", - "file_path": "", - "line_start": 280, - "line_end": 281, - "column_start": 3, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_six", - "name": "expr_six", - "symbol_type": "Class", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_five", - "name": "expr_five", - "symbol_type": "Class", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_four", - "name": "expr_four", - "symbol_type": "Class", - "file_path": "", - "line_start": 284, - "line_end": 284, - "column_start": 3, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_three", - "name": "expr_three", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 3, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_operators_two", - "name": "operators_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 286, - "line_end": 291, - "column_start": 3, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_two", - "name": "expr_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 3, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_one", - "name": "expr_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 293, - "line_end": 293, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 294, - "line_end": 294, - "column_start": 3, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_do_statement", - "name": "do_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 296, - "line_end": 296, - "column_start": 3, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_while_statement", - "name": "while_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 297, - "line_end": 297, - "column_start": 3, - "column_end": 122, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_repeat_statement", - "name": "repeat_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 298, - "line_end": 298, - "column_start": 3, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_at_elseif_else_end", - "name": "at_elseif_else_end", - "symbol_type": "Class", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 3, - "column_end": 136, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_elseif_statement", - "name": "elseif_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 301, - "line_end": 301, - "column_start": 3, - "column_end": 137, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_else_statement", - "name": "else_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 302, - "line_end": 302, - "column_start": 3, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_if_statement", - "name": "if_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 303, - "line_end": 303, - "column_start": 3, - "column_end": 224, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement_one", - "name": "for_statement_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 3, - "column_end": 233, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement_two", - "name": "for_statement_two", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 306, - "column_start": 3, - "column_end": 162, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_for_statement", - "name": "for_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 3, - "column_end": 169, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignment_variable_list", - "name": "assignment_variable_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 309, - "line_end": 309, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignments_one", - "name": "assignments_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 310, - "line_end": 310, - "column_start": 3, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignments", - "name": "assignments", - "symbol_type": "Class", - "file_path": "", - "line_start": 311, - "line_end": 311, - "column_start": 3, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_name", - "name": "function_name", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 3, - "column_end": 173, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_function_definition", - "name": "function_definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 3, - "column_end": 106, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_function", - "name": "local_function", - "symbol_type": "Class", - "file_path": "", - "line_start": 315, - "line_end": 315, - "column_start": 3, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_variables", - "name": "local_variables", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 3, - "column_end": 110, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_local_statement", - "name": "local_statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 317, - "line_end": 317, - "column_start": 3, - "column_end": 121, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semicolon", - "name": "semicolon", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 319, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_statement", - "name": "statement", - "symbol_type": "Class", - "file_path": "", - "line_start": 320, - "line_end": 332, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 334, - "line_end": 334, - "column_start": 3, - "column_end": 116, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53_analyze.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/lua53_analyze.cpp", - "language": "cpp", - "size_bytes": 631, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.972481876Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lua53_parse.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/lua53_parse.cpp", - "language": "cpp", - "size_bytes": 671, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.974005976Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "modulus_match.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/modulus_match.cpp", - "language": "cpp", - "size_bytes": 1015, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.975636710Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_rule", - "name": "my_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/parse_tree.cpp", - "language": "cpp", - "size_bytes": 5414, - "total_lines": 179, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.977605715Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 78, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 9, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cache", - "name": "cache", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 9, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 117, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 128, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 138, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 153, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 158, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_integer", - "name": "integer", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_variable", - "name": "variable", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_plus", - "name": "plus", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_minus", - "name": "minus", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_multiply", - "name": "multiply", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_divide", - "name": "divide", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_open_bracket", - "name": "open_bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_close_bracket", - "name": "close_bracket", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bracketed", - "name": "bracketed", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_product", - "name": "product", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expression", - "name": "expression", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 3, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rearrange", - "name": "rearrange", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 79, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cache", - "name": "cache", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 139, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_node", - "name": "node", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 159, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_tree_user_state.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/parse_tree_user_state.cpp", - "language": "cpp", - "size_bytes": 716, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.979380519Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_user_state", - "name": "user_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 15, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_work", - "name": "work", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "peg2pegtl.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/peg2pegtl.cpp", - "language": "cpp", - "size_bytes": 16720, - "total_lines": 545, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.982749246Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_find_identifier", - "name": "find_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 144, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_identifier", - "name": "find_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 149, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_char_node_to_char", - "name": "char_node_to_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 176, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append_char_node", - "name": "append_char_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 208, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 285, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_identifier", - "name": "get_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 299, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_identifier", - "name": "get_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 321, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_transform", - "name": "transform", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 344, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 361, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 371, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_stringifier", - "name": "make_stringifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 477, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 483, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 495, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 545, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 232, - "line_end": 236, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 286, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 328, - "line_end": 345, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_stringifier", - "name": "stringifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 372, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "proto3.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/proto3.cpp", - "language": "cpp", - "size_bytes": 1009, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.984732927Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "recover.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/recover.cpp", - "language": "cpp", - "size_bytes": 3760, - "total_lines": 130, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.986595750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 71, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_skipping", - "name": "skipping", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_recoverable", - "name": "recoverable", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_sum", - "name": "expr_sum", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_identifier", - "name": "expr_identifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_number", - "name": "expr_number", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_braced", - "name": "expr_braced", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_value", - "name": "expr_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_power", - "name": "expr_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_prod", - "name": "expr_prod", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr_sum", - "name": "expr_sum", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_term", - "name": "term", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_expr", - "name": "expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_recoverable_expr", - "name": "recoverable_expr", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_grammar", - "name": "my_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_found", - "name": "found", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 11, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_18", - "name": "class_18", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_control", - "name": "my_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sum.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/sum.cpp", - "language": "cpp", - "size_bytes": 1549, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.988305167Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_padded_double", - "name": "padded_double", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_double_list", - "name": "double_list", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 31, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "symbol_table.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/symbol_table.cpp", - "language": "cpp", - "size_bytes": 3354, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.990089148Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state", - "name": "state", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_semi", - "name": "semi", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blank0", - "name": "blank0", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_blanks", - "name": "blanks", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_name", - "name": "name", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value", - "name": "value", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_equals", - "name": "equals", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_definition", - "name": "definition", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 3, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_assignment", - "name": "assignment", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 3, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_something", - "name": "something", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 3, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 75, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 87, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 101, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "s_expression.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/s_expression.cpp", - "language": "cpp", - "size_bytes": 3284, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.992176482Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_hash_comment", - "name": "hash_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 3, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list_comment", - "name": "list_comment", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_read_include", - "name": "read_include", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 3, - "column_end": 165, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hash_include", - "name": "hash_include", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_hashed", - "name": "hashed", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 128, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_number", - "name": "number", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_symbol", - "name": "symbol", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_atom", - "name": "atom", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 3, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_anything", - "name": "anything", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 3, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_list", - "name": "list", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 3, - "column_end": 120, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_normal", - "name": "normal", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_anything", - "name": "anything", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_main", - "name": "main", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 50, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "token_input.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/token_input.cpp", - "language": "cpp", - "size_bytes": 6694, - "total_lines": 274, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.994358366Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 6, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_action_input", - "name": "token_action_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 6, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 6, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 92, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 6, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 6, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 6, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 6, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 6, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 6, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 6, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 129, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mark", - "name": "mark", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 145, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 150, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 160, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 165, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 175, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 200, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 244, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 254, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_token_action_input", - "name": "token_action_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token_parse_input", - "name": "token_parse_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 182, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_token_type", - "name": "token_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 201, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_token", - "name": "my_token", - "symbol_type": "Class", - "file_path": "", - "line_start": 227, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 236, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 245, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_grammar", - "name": "my_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 257, - "line_end": 259, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unescape.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/unescape.cpp", - "language": "cpp", - "size_bytes": 2482, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.996241344Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_escaped_x", - "name": "escaped_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_u", - "name": "escaped_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_U", - "name": "escaped_U", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_c", - "name": "escaped_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 3, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_literal", - "name": "literal", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_padded", - "name": "padded", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 14, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 14, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 14, - "column_end": 143, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/uri.cpp", - "language": "cpp", - "size_bytes": 3010, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.998124627Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_URI", - "name": "URI", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bind", - "name": "bind", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 29, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 14, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 14, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 14, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 14, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 14, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 14, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 14, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_print_debug.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/uri_print_debug.cpp", - "language": "cpp", - "size_bytes": 543, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:44.999860817Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_print_names.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/uri_print_names.cpp", - "language": "cpp", - "size_bytes": 543, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.001423847Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uri_trace.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/example/pegtl/uri_trace.cpp", - "language": "cpp", - "size_bytes": 799, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.002956481Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_one.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/actions_one.cpp", - "language": "cpp", - "size_bytes": 3298, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.007704352Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_result", - "name": "test_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_fiz", - "name": "fiz", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_three.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/actions_three.cpp", - "language": "cpp", - "size_bytes": 3246, - "total_lines": 117, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.009584811Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_bool_true", - "name": "apply_bool_true", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply_bool_false", - "name": "apply_bool_false", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_bool_true", - "name": "apply0_bool_true", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_bool_false", - "name": "apply0_bool_false", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 103, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 113, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply_bool_action", - "name": "apply_bool_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 40, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_apply0_bool_action", - "name": "apply0_bool_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 74, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 83, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "actions_two.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/actions_two.cpp", - "language": "cpp", - "size_bytes": 3395, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.011561033Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_state1", - "name": "state1", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_state_test", - "name": "state_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 55, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0_test", - "name": "apply0_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 90, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count_test", - "name": "count_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 129, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_state1", - "name": "state1", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 24, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fobble", - "name": "fobble", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fibble", - "name": "fibble", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action1", - "name": "action1", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 36, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action0", - "name": "action0", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 70, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_count_action", - "name": "count_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_enable.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/action_enable.cpp", - "language": "cpp", - "size_bytes": 1317, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.013354612Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BCB", - "name": "BCB", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ABCBA", - "name": "ABCBA", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 18, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "action_match.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/action_match.cpp", - "language": "cpp", - "size_bytes": 2963, - "total_lines": 116, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.015180410Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 112, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_remove_state", - "name": "remove_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_state_one", - "name": "state_one", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_inner", - "name": "grammar_inner", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 3, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_c", - "name": "grammar_one_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 3, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_b", - "name": "grammar_one_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 3, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar_one_a", - "name": "grammar_one_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 3, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_b", - "name": "action_one_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 51, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_t", - "name": "action_one_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_one_a", - "name": "action_one_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 59, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 82, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 102, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "argv_input.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/argv_input.cpp", - "language": "cpp", - "size_bytes": 614, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.016821649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_classes.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_classes.cpp", - "language": "cpp", - "size_bytes": 6878, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.019620092Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 111, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_eol.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_eol.cpp", - "language": "cpp", - "size_bytes": 6405, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.022472258Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_eolf.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_eolf.cpp", - "language": "cpp", - "size_bytes": 6463, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.025274336Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 84, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_forty_two.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_forty_two.cpp", - "language": "cpp", - "size_bytes": 1693, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.027307409Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_identifier.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_identifier.cpp", - "language": "cpp", - "size_bytes": 1563, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.029009757Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_istring.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_istring.cpp", - "language": "cpp", - "size_bytes": 2678, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.031073048Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_keyword.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_keyword.cpp", - "language": "cpp", - "size_bytes": 1580, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.032974706Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_shebang.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_shebang.cpp", - "language": "cpp", - "size_bytes": 1735, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.034689128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_string.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_string.cpp", - "language": "cpp", - "size_bytes": 2575, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.036780898Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_three.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_three.cpp", - "language": "cpp", - "size_bytes": 1218, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.038525063Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ascii_two.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/ascii_two.cpp", - "language": "cpp", - "size_bytes": 926, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.040144504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "buffer_input.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/buffer_input.cpp", - "language": "cpp", - "size_bytes": 2609, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.042358713Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_state.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/change_action_and_state.cpp", - "language": "cpp", - "size_bytes": 2458, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.044221072Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_S", - "name": "S", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 46, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 77, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 110, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_1", - "name": "my_action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_2", - "name": "my_action_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 78, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_action_and_states.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/change_action_and_states.cpp", - "language": "cpp", - "size_bytes": 2366, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.045979661Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 100, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_1", - "name": "my_action_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action_2", - "name": "my_action_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_state.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/change_state.cpp", - "language": "cpp", - "size_bytes": 2174, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.047767805Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_S", - "name": "S", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "change_states.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/change_states.cpp", - "language": "cpp", - "size_bytes": 1934, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.049657631Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AB", - "name": "AB", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "check_bytes.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/check_bytes.cpp", - "language": "cpp", - "size_bytes": 1222, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.051310502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contains.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contains.cpp", - "language": "cpp", - "size_bytes": 583, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.053350224Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_alphabet.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_alphabet.cpp", - "language": "cpp", - "size_bytes": 2558, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.054952965Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_analyze.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_analyze.cpp", - "language": "cpp", - "size_bytes": 8015, - "total_lines": 230, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.057937252Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 226, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_strange", - "name": "strange", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 9, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 9, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 9, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 9, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 9, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rec", - "name": "rec", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_bar", - "name": "bar", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 9, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_var", - "name": "var", - "symbol_type": "Class", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fun", - "name": "fun", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 9, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 9, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_fun", - "name": "fun", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 9, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_var", - "name": "var", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 9, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exp", - "name": "exp", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 9, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 9, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 9, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 9, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 9, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 9, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 9, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 9, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 180, - "line_end": 180, - "column_start": 9, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 9, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 9, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 197, - "line_end": 197, - "column_start": 9, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 9, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 9, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 9, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 9, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 218, - "line_end": 218, - "column_start": 9, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_tst", - "name": "tst", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 9, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_control_action.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_control_action.cpp", - "language": "cpp", - "size_bytes": 3671, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.060270634Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 113, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 120, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 126, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 133, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 153, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_first_rule", - "name": "first_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_second_rule", - "name": "second_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 102, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 134, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_coverage.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_coverage.cpp", - "language": "cpp", - "size_bytes": 3131, - "total_lines": 66, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.062522825Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_function.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_function.cpp", - "language": "cpp", - "size_bytes": 787, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.064264988Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_func1", - "name": "func1", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_rule1", - "name": "rule1", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_http.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_http.cpp", - "language": "cpp", - "size_bytes": 2678, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.066144711Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_header", - "name": "test_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_chunked", - "name": "test_chunked", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 92, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_chunked_action", - "name": "chunked_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_if_then.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_if_then.cpp", - "language": "cpp", - "size_bytes": 902, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.067838356Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_instantiate.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_instantiate.cpp", - "language": "cpp", - "size_bytes": 1624, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.069424207Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 6, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_class", - "name": "test_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 6, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 6, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 6, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_class", - "name": "test_class", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_integer.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_integer.cpp", - "language": "cpp", - "size_bytes": 11475, - "total_lines": 263, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.072736503Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexical_cast", - "name": "lexical_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_signed", - "name": "test_signed", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 81, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_unsigned", - "name": "test_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 116, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 257, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_int_action", - "name": "int_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_iri.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_iri.cpp", - "language": "cpp", - "size_bytes": 3386, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.074956581Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 51, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_json.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_json.cpp", - "language": "cpp", - "size_bytes": 9911, - "total_lines": 123, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.077772292Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 119, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_parse_tree.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_parse_tree.cpp", - "language": "cpp", - "size_bytes": 5780, - "total_lines": 153, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.080184421Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 149, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_E", - "name": "E", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_F", - "name": "F", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D2", - "name": "D2", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D2", - "name": "D2", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_parse_tree_to_dot.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_parse_tree_to_dot.cpp", - "language": "cpp", - "size_bytes": 1047, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.082099839Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_selector", - "name": "selector", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_partial_trace.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_partial_trace.cpp", - "language": "cpp", - "size_bytes": 837, - "total_lines": 28, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.083720323Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_inner", - "name": "inner", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer", - "name": "outer", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_partial_action", - "name": "partial_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 24, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 14, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_predicates.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_predicates.cpp", - "language": "cpp", - "size_bytes": 5142, - "total_lines": 101, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.086412962Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 97, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_print.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_print.cpp", - "language": "cpp", - "size_bytes": 650, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.088105996Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_raw_string.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_raw_string.cpp", - "language": "cpp", - "size_bytes": 6083, - "total_lines": 141, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.090540166Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_data", - "name": "verify_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 67, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_fail", - "name": "verify_fail", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 137, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_raction", - "name": "raction", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 18, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_qaction", - "name": "qaction", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 32, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_rgrammar", - "name": "rgrammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_qgrammar", - "name": "qgrammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_remove_first_state.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_remove_first_state.cpp", - "language": "cpp", - "size_bytes": 2302, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.092526059Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control_impl", - "name": "control_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 70, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_control", - "name": "test_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_remove_last_states.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_remove_last_states.cpp", - "language": "cpp", - "size_bytes": 2308, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.094357083Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 98, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_control_impl", - "name": "control_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 70, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_control", - "name": "test_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_rep_one_min_max.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_rep_one_min_max.cpp", - "language": "cpp", - "size_bytes": 2040, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.096298957Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_rep_string.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_rep_string.cpp", - "language": "cpp", - "size_bytes": 2750, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.098491462Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_separated_seq.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_separated_seq.cpp", - "language": "cpp", - "size_bytes": 721, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.100233510Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 24, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_A", - "name": "A", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_B", - "name": "B", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_C", - "name": "C", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_D", - "name": "D", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_S", - "name": "S", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_state_control.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_state_control.cpp", - "language": "cpp", - "size_bytes": 8522, - "total_lines": 200, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.103321146Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_failure", - "name": "failure", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_raise", - "name": "raise", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 68, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 89, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 116, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 136, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 194, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_entry", - "name": "test_entry", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_state", - "name": "test_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 90, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 93, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 117, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 137, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_to_string.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_to_string.cpp", - "language": "cpp", - "size_bytes": 1368, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.105368412Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_trace1.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_trace1.cpp", - "language": "cpp", - "size_bytes": 889, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.107016215Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 28, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_trace2.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_trace2.cpp", - "language": "cpp", - "size_bytes": 2576, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.108732966Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 86, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_trace_action", - "name": "trace_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_unescape.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_unescape.cpp", - "language": "cpp", - "size_bytes": 5895, - "total_lines": 131, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.110857450Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_data", - "name": "verify_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_fail", - "name": "verify_fail", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 55, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 127, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_escaped_c", - "name": "escaped_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 3, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_u", - "name": "escaped_u", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_U", - "name": "escaped_U", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_j", - "name": "escaped_j", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 3, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped_x", - "name": "escaped_x", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 3, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_escaped", - "name": "escaped", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 3, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_character", - "name": "character", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 3, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unstring", - "name": "unstring", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 3, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_unaction", - "name": "unaction", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 29, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 14, - "column_end": 98, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_13", - "name": "class_13", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 14, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "contrib_uri.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/contrib_uri.cpp", - "language": "cpp", - "size_bytes": 2966, - "total_lines": 53, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.112889902Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "control_unwind.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/control_unwind.cpp", - "language": "cpp", - "size_bytes": 1352, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.114734054Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unwind", - "name": "unwind", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 74, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_r", - "name": "r", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_c", - "name": "c", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "data_cstring.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/data_cstring.cpp", - "language": "cpp", - "size_bytes": 1000, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.137484066Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "demangle.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/demangle.cpp", - "language": "cpp", - "size_bytes": 1224, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.139124336Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test", - "name": "test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "discard_input.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/discard_input.cpp", - "language": "cpp", - "size_bytes": 2988, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.141413245Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_parse_cstring", - "name": "parse_cstring", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_n", - "name": "n", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_f", - "name": "f", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_s", - "name": "s", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 29, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 14, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 14, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 14, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "enable_control.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/enable_control.cpp", - "language": "cpp", - "size_bytes": 1611, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.143248421Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_r", - "name": "r", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 58, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error_message.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/error_message.cpp", - "language": "cpp", - "size_bytes": 1297, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.144830258Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_a", - "name": "a", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_b", - "name": "b", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 3, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_grammar", - "name": "grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 3, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_error", - "name": "error", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_cstream.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/file_cstream.cpp", - "language": "cpp", - "size_bytes": 902, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.146954405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_file.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/file_file.cpp", - "language": "cpp", - "size_bytes": 342, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.148874290Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_istream.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/file_istream.cpp", - "language": "cpp", - "size_bytes": 1232, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.150451460Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 39, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_mmap.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/file_mmap.cpp", - "language": "cpp", - "size_bytes": 563, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.151941770Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "file_read.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/file_read.cpp", - "language": "cpp", - "size_bytes": 677, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.153472718Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_open_input", - "name": "open_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_open_input", - "name": "open_input", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "icu_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/icu_general.cpp", - "language": "cpp", - "size_bytes": 678, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.155301678Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_endian.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/internal_endian.cpp", - "language": "cpp", - "size_bytes": 6958, - "total_lines": 84, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.157501600Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 80, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_file_mapper.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/internal_file_mapper.cpp", - "language": "cpp", - "size_bytes": 1549, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.159342676Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 44, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_file_opener.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/internal_file_opener.cpp", - "language": "cpp", - "size_bytes": 925, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.160903715Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_bytes.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/limit_bytes.cpp", - "language": "cpp", - "size_bytes": 1222, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.162526684Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_rule", - "name": "test_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "limit_depth.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/limit_depth.cpp", - "language": "cpp", - "size_bytes": 1259, - "total_lines": 50, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.164267215Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 46, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_recursive", - "name": "test_recursive", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_grammar", - "name": "test_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_test_action", - "name": "test_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/main.hpp", - "language": "cpp", - "size_bytes": 609, - "total_lines": 20, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.165834417Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parse_error.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/parse_error.cpp", - "language": "cpp", - "size_bytes": 1930, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.167657560Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 57, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "pegtl_string_t.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/pegtl_string_t.cpp", - "language": "cpp", - "size_bytes": 1910, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.169622150Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foobar", - "name": "foobar", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/position.cpp", - "language": "cpp", - "size_bytes": 7487, - "total_lines": 218, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.172563251Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_buffer_input_t", - "name": "buffer_input_t", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_matches_lf", - "name": "test_matches_lf", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_matches_other", - "name": "test_matches_other", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_mismatch", - "name": "test_mismatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 92, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_nested_asserts", - "name": "test_nested_asserts", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_nested", - "name": "test_nested", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_iterator", - "name": "test_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 141, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 212, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_buffer_input_t", - "name": "buffer_input_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer_grammar", - "name": "outer_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inner_grammar", - "name": "inner_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_outer_action", - "name": "outer_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 72, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "restart_input.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/restart_input.cpp", - "language": "cpp", - "size_bytes": 1094, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.174477774Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_lazy", - "name": "test_lazy", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_eager", - "name": "test_eager", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 30, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "result_type.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/result_type.hpp", - "language": "cpp", - "size_bytes": 875, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.175982729Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 31, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_action.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_action.cpp", - "language": "cpp", - "size_bytes": 748, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.177642596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_apply.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_apply.cpp", - "language": "cpp", - "size_bytes": 2943, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.179598198Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 52, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 93, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 33, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 64, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_apply0.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_apply0.cpp", - "language": "cpp", - "size_bytes": 2590, - "total_lines": 92, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.181689704Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 30, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 88, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 20, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 31, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 39, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 49, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 59, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_at.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_at.cpp", - "language": "cpp", - "size_bytes": 2025, - "total_lines": 63, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.183666663Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 59, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at_action", - "name": "at_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 15, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bof.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_bof.cpp", - "language": "cpp", - "size_bytes": 1197, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.185447515Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bol.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_bol.cpp", - "language": "cpp", - "size_bytes": 1098, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.187154004Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_bytes.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_bytes.cpp", - "language": "cpp", - "size_bytes": 1662, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.189007259Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_control.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_control.cpp", - "language": "cpp", - "size_bytes": 750, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.190694414Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 21, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_disable.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_disable.cpp", - "language": "cpp", - "size_bytes": 608, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.192257455Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_discard.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_discard.cpp", - "language": "cpp", - "size_bytes": 713, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.193843391Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_enable.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_enable.cpp", - "language": "cpp", - "size_bytes": 602, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.195453623Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_eof.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_eof.cpp", - "language": "cpp", - "size_bytes": 775, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.197142906Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_failure.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_failure.cpp", - "language": "cpp", - "size_bytes": 777, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.198653130Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_apply.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_if_apply.cpp", - "language": "cpp", - "size_bytes": 3893, - "total_lines": 126, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.200702693Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 41, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 53, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 9, - "column_end": 10, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 122, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_action_a", - "name": "action_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action_b", - "name": "action_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 32, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_a", - "name": "action2_a", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 42, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_b", - "name": "action2_b", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 54, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action2_c", - "name": "action2_c", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 65, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_action", - "name": "action", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 69, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 80, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_must.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_if_must.cpp", - "language": "cpp", - "size_bytes": 3829, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.203393436Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 52, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_must_else.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_if_must_else.cpp", - "language": "cpp", - "size_bytes": 531, - "total_lines": 26, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.204980204Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_if_then_else.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_if_then_else.cpp", - "language": "cpp", - "size_bytes": 471, - "total_lines": 18, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.206509182Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_list.cpp", - "language": "cpp", - "size_bytes": 4217, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.209130050Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list_must.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_list_must.cpp", - "language": "cpp", - "size_bytes": 4370, - "total_lines": 66, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.211921844Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_list_tail.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_list_tail.cpp", - "language": "cpp", - "size_bytes": 4407, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.214661179Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_minus.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_minus.cpp", - "language": "cpp", - "size_bytes": 3612, - "total_lines": 52, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.217478344Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_must.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_must.cpp", - "language": "cpp", - "size_bytes": 806, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.219223921Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_not_at.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_not_at.cpp", - "language": "cpp", - "size_bytes": 2272, - "total_lines": 68, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.221165490Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 64, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_at_action", - "name": "at_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 15, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_opt.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_opt.cpp", - "language": "cpp", - "size_bytes": 3593, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.224061886Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 66, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 13, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_opt_must.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_opt_must.cpp", - "language": "cpp", - "size_bytes": 3470, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.226652095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 48, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_pad.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_pad.cpp", - "language": "cpp", - "size_bytes": 3391, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.229277609Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 45, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_pad_opt.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_pad_opt.cpp", - "language": "cpp", - "size_bytes": 2331, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.232221807Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 33, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_plus.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_plus.cpp", - "language": "cpp", - "size_bytes": 2912, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.234622208Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_raise.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_raise.cpp", - "language": "cpp", - "size_bytes": 1148, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.236413880Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rematch.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rematch.cpp", - "language": "cpp", - "size_bytes": 9165, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.240687504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 111, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_foo", - "name": "foo", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 9, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rep.cpp", - "language": "cpp", - "size_bytes": 5741, - "total_lines": 76, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.244270249Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 72, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_max.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rep_max.cpp", - "language": "cpp", - "size_bytes": 3918, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.247402041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_min.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rep_min.cpp", - "language": "cpp", - "size_bytes": 2426, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.249633233Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 35, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_min_max.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rep_min_max.cpp", - "language": "cpp", - "size_bytes": 3382, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.252132863Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 47, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_rep_opt.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_rep_opt.cpp", - "language": "cpp", - "size_bytes": 2706, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.254398277Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_require.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_require.cpp", - "language": "cpp", - "size_bytes": 2266, - "total_lines": 41, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.256396129Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_seq.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_seq.cpp", - "language": "cpp", - "size_bytes": 568, - "total_lines": 22, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.258036220Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 18, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_sor.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_sor.cpp", - "language": "cpp", - "size_bytes": 3061, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.260392761Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 50, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_star.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_star.cpp", - "language": "cpp", - "size_bytes": 2258, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.262621700Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 36, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_star_must.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_star_must.cpp", - "language": "cpp", - "size_bytes": 2325, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.264818103Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 40, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_state.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_state.cpp", - "language": "cpp", - "size_bytes": 1061, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.266592738Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_test_state_state", - "name": "test_state_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 15, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 19, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 32, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_test_state_state", - "name": "test_state_state", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_success.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_success.cpp", - "language": "cpp", - "size_bytes": 713, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.268180519Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 23, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_try_catch.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_try_catch.cpp", - "language": "cpp", - "size_bytes": 639, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.269665319Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rule_until.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/rule_until.cpp", - "language": "cpp", - "size_bytes": 7600, - "total_lines": 122, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.273182393Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_match", - "name": "match", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 118, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_my_rule", - "name": "my_rule", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 24, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_my_action", - "name": "my_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 28, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/test.hpp", - "language": "cpp", - "size_bytes": 3433, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.275027304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_empty.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/test_empty.cpp", - "language": "cpp", - "size_bytes": 274, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.276581083Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 9, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_result.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/test_result.cpp", - "language": "cpp", - "size_bytes": 928, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.278169263Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_setup.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/test_setup.cpp", - "language": "cpp", - "size_bytes": 1339, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.279850128Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint16_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/uint16_general.cpp", - "language": "cpp", - "size_bytes": 14896, - "total_lines": 176, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.283865293Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 172, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint32_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/uint32_general.cpp", - "language": "cpp", - "size_bytes": 17597, - "total_lines": 181, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.288326931Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 177, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint64_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/uint64_general.cpp", - "language": "cpp", - "size_bytes": 22235, - "total_lines": 185, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.292936979Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 181, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "uint8_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/uint8_general.cpp", - "language": "cpp", - "size_bytes": 25428, - "total_lines": 249, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.299937305Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 245, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf16_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/utf16_general.cpp", - "language": "cpp", - "size_bytes": 10569, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.303824014Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_u16s", - "name": "u16s", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u16s_be", - "name": "u16s_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u16s_le", - "name": "u16s_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16", - "name": "test_utf16", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 68, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16_be", - "name": "test_utf16_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 106, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf16_le", - "name": "test_utf16_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 144, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf32_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/utf32_general.cpp", - "language": "cpp", - "size_bytes": 8532, - "total_lines": 134, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.307317371Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_u32s", - "name": "u32s", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u32s_be", - "name": "u32s_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_u32s_le", - "name": "u32s_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32", - "name": "test_utf32", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32_be", - "name": "test_utf32_be", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 94, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_test_utf32_le", - "name": "test_utf32_le", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 123, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 130, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8_general.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/utf8_general.cpp", - "language": "cpp", - "size_bytes": 21849, - "total_lines": 263, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.312489337Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 259, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_char.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_char.hpp", - "language": "cpp", - "size_bytes": 931, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.314683454Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_char", - "name": "verify_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_char", - "name": "verify_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_file.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_file.hpp", - "language": "cpp", - "size_bytes": 3944, - "total_lines": 138, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.316701493Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_file", - "name": "verify_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 134, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_file_content", - "name": "file_content", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_grammar", - "name": "file_grammar", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_action", - "name": "file_action", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 29, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 38, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_file_control", - "name": "file_control", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 3, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 54, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_ifmt.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_ifmt.hpp", - "language": "cpp", - "size_bytes": 2570, - "total_lines": 45, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.319204148Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_ifmt", - "name": "verify_ifmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 41, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_impl.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_impl.hpp", - "language": "cpp", - "size_bytes": 2100, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.320958554Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_impl_two", - "name": "verify_impl_two", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 49, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_impl_one", - "name": "verify_impl_one", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_meta.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_meta.hpp", - "language": "cpp", - "size_bytes": 1525, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.322584Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_meta", - "name": "verify_meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_analyze", - "name": "verify_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 42, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_rule.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_rule.hpp", - "language": "cpp", - "size_bytes": 3389, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.324599458Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_apply", - "name": "apply", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 25, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_apply0", - "name": "apply0", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 33, - "column_start": 6, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_rule", - "name": "verify_rule", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 60, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_verify_only", - "name": "verify_only", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 77, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_verify_action_impl", - "name": "verify_action_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_verify_action_impl0", - "name": "verify_action_impl0", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verify_seqs.hpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/verify_seqs.hpp", - "language": "cpp", - "size_bytes": 4730, - "total_lines": 69, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.327770981Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_verify_seqs", - "name": "verify_seqs", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 65, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "visit.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-src/src/test/pegtl/visit.cpp", - "language": "cpp", - "size_bytes": 705, - "total_lines": 31, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.329778968Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unit_test", - "name": "unit_test", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_visitor", - "name": "visitor", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 20, - "column_start": 3, - "column_end": 4, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/_deps/pegtl-subbuild/CMakeFiles/pegtl-populate.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 118, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.343079384Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ftest.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/extern/ftest/ftest.h", - "language": "c", - "size_bytes": 7837, - "total_lines": 232, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.443218431Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Test", - "name": "Test", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 44, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TestCase", - "name": "TestCase", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_Test", - "name": "Test", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TestCase", - "name": "TestCase", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TestDriver", - "name": "TestDriver", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "smoke.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/extern/ftest/tests/smoke.cpp", - "language": "cpp", - "size_bytes": 2205, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.447484890Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "docsample.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/samples/docsample.cpp", - "language": "cpp", - "size_bytes": 2123, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.451875463Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "checked.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8/checked.h", - "language": "c", - "size_bytes": 11564, - "total_lines": 319, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.456465251Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_invalid_code_point", - "name": "invalid_code_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 8, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 41, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 8, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_invalid_utf8", - "name": "invalid_utf8", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 8, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_invalid_utf8", - "name": "invalid_utf8", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 8, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 41, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 8, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_invalid_utf16", - "name": "invalid_utf16", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 8, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 41, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 8, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 41, - "column_end": 105, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_peek_next", - "name": "peek_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_prior", - "name": "prior", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_distance", - "name": "distance", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf16to8", - "name": "utf16to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to16", - "name": "utf8to16", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf32to8", - "name": "utf32to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to32", - "name": "utf8to32", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 6, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 268, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 6, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 275, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 281, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 285, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 290, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 296, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 301, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 307, - "column_start": 6, - "column_end": 7, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_exception", - "name": "exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_code_point", - "name": "invalid_code_point", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_utf8", - "name": "invalid_utf8", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_utf16", - "name": "invalid_utf16", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_not_enough_room", - "name": "not_enough_room", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator", - "name": "iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8/core.h", - "language": "c", - "size_bytes": 13381, - "total_lines": 387, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.459151716Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_mask8", - "name": "mask8", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_mask16", - "name": "mask16", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_trail", - "name": "is_trail", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_lead_surrogate", - "name": "is_lead_surrogate", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_trail_surrogate", - "name": "is_trail_surrogate", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_surrogate", - "name": "is_surrogate", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_code_point_valid", - "name": "is_code_point_valid", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sequence_length", - "name": "sequence_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_overlong_sequence", - "name": "is_overlong_sequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_increase_safely", - "name": "increase_safely", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_sequence_1", - "name": "get_sequence_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_sequence_2", - "name": "get_sequence_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_sequence_3", - "name": "get_sequence_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_sequence_4", - "name": "get_sequence_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validate_next", - "name": "validate_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validate_next", - "name": "validate_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_invalid", - "name": "find_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid", - "name": "is_valid", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_starts_with_bom", - "name": "starts_with_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp11.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8/cpp11.h", - "language": "c", - "size_bytes": 3330, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.461426044Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf16to8", - "name": "utf16to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to16", - "name": "utf8to16", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf32to8", - "name": "utf32to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to32", - "name": "utf8to32", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_invalid", - "name": "find_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid", - "name": "is_valid", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_starts_with_bom", - "name": "starts_with_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp17.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8/cpp17.h", - "language": "c", - "size_bytes": 3322, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.463284737Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf16to8", - "name": "utf16to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to16", - "name": "utf8to16", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf32to8", - "name": "utf32to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to32", - "name": "utf8to32", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_invalid", - "name": "find_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_valid", - "name": "is_valid", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_starts_with_bom", - "name": "starts_with_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unchecked.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8/unchecked.h", - "language": "c", - "size_bytes": 9944, - "total_lines": 257, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.465389045Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 74, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_invalid", - "name": "replace_invalid", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 81, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 112, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_peek_next", - "name": "peek_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_prior", - "name": "prior", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 126, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 141, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_distance", - "name": "distance", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf16to8", - "name": "utf16to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 166, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to16", - "name": "utf8to16", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 181, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf32to8", - "name": "utf32to8", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 190, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_utf8to32", - "name": "utf8to32", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 199, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 12, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator", - "name": "iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 212, - "column_start": 12, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 12, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 219, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 223, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 227, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 232, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 238, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 243, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 249, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iterator", - "name": "iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 203, - "line_end": 250, - "column_start": 10, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utf8.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/source/utf8.h", - "language": "c", - "size_bytes": 1521, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.467471533Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "apitests.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/apitests.cpp", - "language": "cpp", - "size_bytes": 170, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.470174761Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "negative.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/negative.cpp", - "language": "cpp", - "size_bytes": 2143, - "total_lines": 59, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.473877057Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "noexceptionstests.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/noexceptionstests.cpp", - "language": "cpp", - "size_bytes": 105, - "total_lines": 4, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.475366693Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_checked_api.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_checked_api.h", - "language": "c", - "size_bytes": 5879, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.477585865Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 147, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_checked_iterator.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_checked_iterator.h", - "language": "c", - "size_bytes": 1147, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.479458465Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_cpp11.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_cpp11.cpp", - "language": "cpp", - "size_bytes": 3036, - "total_lines": 109, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.481332107Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_cpp17.cpp", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_cpp17.cpp", - "language": "cpp", - "size_bytes": 2611, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.483223557Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_unchecked_api.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_unchecked_api.h", - "language": "c", - "size_bytes": 5021, - "total_lines": 164, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.487179255Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 162, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_unchecked_iterator.h", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-src/tests/test_unchecked_iterator.h", - "language": "c", - "size_bytes": 1120, - "total_lines": 36, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.489173842Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TEST", - "name": "TEST", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyaflow/nekocode/build/_deps/utf8cpp-subbuild/CMakeFiles/utf8cpp-populate.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 120, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.502512389Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/nyamesh/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8450, - "total_lines": 265, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.524054065Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/nyamesh/core/core-communication.js", - "language": "javascript", - "size_bytes": 11289, - "total_lines": 401, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.528884307Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 250, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/nyamesh/core/core-fusion.js", - "language": "javascript", - "size_bytes": 21037, - "total_lines": 673, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.533858269Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "separateFrom", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canSeparate", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeSeparation", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createRestoredCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 499, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restorePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restoreSubscribers", - "symbol_type": "Function", - "file_path": "", - "line_start": 555, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendSeparationNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 621, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 613, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findLatestFusionRecord", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSubscribers", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 653, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSeparationHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 670, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/nyamesh/core/nyacore.js", - "language": "javascript", - "size_bytes": 24996, - "total_lines": 856, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.538983615Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 474, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 544, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 623, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 685, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 730, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 735, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 787, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 805, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 820, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 827, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 847, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 846, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/nyamesh/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3864, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.543441998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-core-manager.js", - "path": "./development/nyaflow/nyamesh/core/unified-core-manager.js", - "language": "javascript", - "size_bytes": 13680, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.547704800Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreateCoreIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyCoreIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoresByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoresByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCoreFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCoreTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedCoreManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/nyamesh/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24680, - "total_lines": 753, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.552710983Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 95, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 334, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 563, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 608, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 661, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 696, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/nyamesh/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18226, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.557877639Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 320, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 575, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 638, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 643, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-store.js", - "path": "./development/nyaflow/nyamesh/cores/core-store.js", - "language": "javascript", - "size_bytes": 2822, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.563334501Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-interface.js", - "path": "./development/nyaflow/nyamesh/interfaces/core-interface.js", - "language": "javascript", - "size_bytes": 4582, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.568432253Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ICore", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/nyamesh/messaging/message.js", - "language": "javascript", - "size_bytes": 5309, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.573242992Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/nyamesh/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5448, - "total_lines": 189, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.576897667Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/nyamesh/messaging/transport.js", - "language": "javascript", - "size_bytes": 10494, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.580913968Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh.js", - "path": "./development/nyaflow/nyamesh/nyamesh.js", - "language": "javascript", - "size_bytes": 25159, - "total_lines": 861, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.586144472Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attach", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 468, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detach", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEffectiveRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLeaf", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByHintRole", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 541, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildrenByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 549, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 548, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStructureInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 570, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 614, - "line_end": 628, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performShutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 667, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChildCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownUnifiedSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 695, - "line_end": 718, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownCommunicationSystems", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 735, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 740, - "line_end": 760, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownBaseSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 765, - "line_end": 792, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 797, - "line_end": 810, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shutdownNyaCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 825, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isShutdownComplete", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 832, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 835, - "line_end": 852, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 843, - "line_end": 851, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 857, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh-intent-example.js", - "path": "./development/nyaflow/nyamesh-tests/nyamesh-intent-example.js", - "language": "javascript", - "size_bytes": 3126, - "total_lines": 107, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.597405484Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "example1", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "example2", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "example3", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "example4", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/data/html-parser/main.js", - "language": "javascript", - "size_bytes": 19712, - "total_lines": 603, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.610428160Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHttpResponseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleQueryIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "parseHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "querySelector", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleParseButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExtractButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleClearButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 565, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 588, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 599, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json-formatter.js", - "path": "./development/nyaflow/plugins_bak/categories/data/json-formatter/json-formatter.js", - "language": "javascript", - "size_bytes": 12256, - "total_lines": 349, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.616691596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/data/output-console/main.js", - "language": "javascript", - "size_bytes": 9431, - "total_lines": 317, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.622252964Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectDataType", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getColorForType", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/data/string-uppercase/main.js", - "language": "javascript", - "size_bytes": 5116, - "total_lines": 166, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.627781354Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/debug-console/main.js", - "language": "javascript", - "size_bytes": 17144, - "total_lines": 538, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.634726040Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleKeyDown", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTabCompletion", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCommand", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeJavaScript", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSpecialCommands", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 366, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOutput", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOutputColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "navigateHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCompletionSuggestions", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearConsole", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 469, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/message-log-panel/main.js", - "language": "javascript", - "size_bytes": 16886, - "total_lines": 498, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.641045971Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeLogMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startLogCapture", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 233, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addLogEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLogDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFilteredEntries", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 342, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLevelBorderColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 408, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportLogs", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-definitions.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/monaco-editor/intent-definitions.js", - "language": "javascript", - "size_bytes": 5808, - "total_lines": 267, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.647167992Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "closeEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateMonacoIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoIntentSender", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/monaco-editor/main.js", - "language": "javascript", - "size_bytes": 34431, - "total_lines": 919, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.652018684Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadMonacoCDN", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 281, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFallbackEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupSaveButtonListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "editPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 422, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createEditorModal", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupModalEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 670, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 586, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 657, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 746, - "line_end": 750, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 750, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeModalEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 812, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupModalDrag", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 860, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 843, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 845, - "line_end": 853, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 859, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 865, - "line_end": 883, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 888, - "line_end": 894, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 912, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/node-tree-view/main.js", - "language": "javascript", - "size_bytes": 19972, - "total_lines": 621, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.659639508Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeTreeView", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCanvasElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementAttributes", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "buildTreeStructure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeDisplayName", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 311, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeType", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateTreeDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderTreeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "highlightElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toggleExpand", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "countNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collapseAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "filterTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandMatchingNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandNodesRecursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 540, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportTree", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanTreeForExport", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 581, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 577, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 614, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/developer-tools/property-inspector/main.js", - "language": "javascript", - "size_bytes": 19884, - "total_lines": 550, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.666068824Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeInspector", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupElementSelectionListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractElementProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateInspectorUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getInputType", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createInputElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 376, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "normalizeColor", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateSelectedInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyPropertyToElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetToDefaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "undoChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 512, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "redoChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showError", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 543, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/media/canvas-drawing/main.js", - "language": "javascript", - "size_bytes": 13291, - "total_lines": 450, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.676298862Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAnimationStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleAnimationStop", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExpandedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollapsedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processDrawRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 409, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CanvasDrawingPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/media/chart-visualization/main.js", - "language": "javascript", - "size_bytes": 18131, - "total_lines": 506, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.682385430Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 200, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateChartConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateSVGChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http-request.js", - "path": "./development/nyaflow/plugins_bak/categories/network/http-request/http-request.js", - "language": "javascript", - "size_bytes": 20393, - "total_lines": 561, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.690039801Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 76, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleRequestIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePostIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cancelRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 456, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 488, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSendToFormatterClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/button-send/main.js", - "language": "javascript", - "size_bytes": 7566, - "total_lines": 278, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.698531459Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePropertyUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExpandedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollapsedUIRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ButtonSendPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/html-display/main.js", - "language": "javascript", - "size_bytes": 19006, - "total_lines": 539, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.704489992Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFromURL", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateResultsHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIframeSandbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateAutoRefresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "escapeHtml", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 473, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 490, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/input-text/main.js", - "language": "javascript", - "size_bytes": 8883, - "total_lines": 308, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.710517569Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTextInput", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUIWithError", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/text-note/main.js", - "language": "javascript", - "size_bytes": 6951, - "total_lines": 241, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.716412308Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTextGet", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUIToggle", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextNotePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-editor.plugin.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/_archive_text-editor.plugin.js", - "language": "javascript", - "size_bytes": 6663, - "total_lines": 224, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.720972912Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleContentSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLanguageChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNodeState", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProperties", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 202, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearContent", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextEditorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "_archive_text-note.plugin.js", - "path": "./development/nyaflow/plugins_bak/categories/ui/_archive_text-note.plugin.js", - "language": "javascript", - "size_bytes": 3400, - "total_lines": 108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.725016882Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "onLoad", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.js", - "path": "./development/nyaflow/plugins_bak/categories/workflow/interval-inject/main.js", - "language": "javascript", - "size_bytes": 19431, - "total_lines": 582, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.731781621Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "createState", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 92, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleConfigureIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopInterval", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeInjection", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeTriggeredAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntervalInMilliseconds", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExpandedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCollapsedUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHistoryHTML", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 410, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStartButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleStopButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleInjectButtonClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 551, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "index.js", - "path": "./development/nyaflow/plugins_bak/samples/index.js", - "language": "javascript", - "size_bytes": 5081, - "total_lines": 200, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.740063518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "loadPluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginSamples", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPluginsByTag", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-plugins.js", - "path": "./development/nyaflow/plugins_bak/_archive/simple-plugins.js", - "language": "javascript", - "size_bytes": 16705, - "total_lines": 704, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.746576416Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 652, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 682, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 677, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 676, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPluginsByTag", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 690, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 688, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 698, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginById", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 701, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "chart_display.js", - "path": "./development/nyaflow/plugins_bak/_legacy/chart_display.js", - "language": "javascript", - "size_bytes": 8762, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.752944179Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createFallbackUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createChartUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMetricsUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateMetricsDisplay", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChartDisplayPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "city_pedestrian.js", - "path": "./development/nyaflow/plugins_bak/_legacy/city_pedestrian.js", - "language": "javascript", - "size_bytes": 6324, - "total_lines": 187, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.756964158Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createPedestrian", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTrafficLightChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleVehicleMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startBehavior", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startCrossing", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_returnToStart", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CityPedestrianPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "city_vehicle.js", - "path": "./development/nyaflow/plugins_bak/_legacy/city_vehicle.js", - "language": "javascript", - "size_bytes": 5303, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.761076685Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 16, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 35, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleTrafficLightChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_moveVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyCleared", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CityVehiclePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cogito.js", - "path": "./development/nyaflow/plugins_bak/_legacy/cogito.js", - "language": "javascript", - "size_bytes": 6699, - "total_lines": 205, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.764964005Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 51, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "askExistentialQuestion", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "contemplateExistence", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleProposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateCharacter", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CogitoPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "collision_detector.js", - "path": "./development/nyaflow/plugins_bak/_legacy/collision_detector.js", - "language": "javascript", - "size_bytes": 4278, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.768768090Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectRegistration", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectUnregistration", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleObjectMoved", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startDetection", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_detectCollisions", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_checkCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CollisionDetectorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "emergency_vehicle.js", - "path": "./development/nyaflow/plugins_bak/_legacy/emergency_vehicle.js", - "language": "javascript", - "size_bytes": 6102, - "total_lines": 201, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.772641513Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createEmergencyVehicle", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startEmergencyEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_triggerEmergency", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSiren", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startEmergencyMovement", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_endEmergency", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "EmergencyVehiclePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "galaxy_viewer.js", - "path": "./development/nyaflow/plugins_bak/_legacy/galaxy_viewer.js", - "language": "javascript", - "size_bytes": 20587, - "total_lines": 604, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.777336924Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_setupScene", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onWindowResize", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animate", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleBoardChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 180, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addTestStars", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 213, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_removeStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createCollisionEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 336, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createExplosion", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_splitStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 416, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_expireStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_spawnRandomStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 437, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createSupernovaEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 455, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createStarCounter", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 524, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createDemoInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_updateStarCounter", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_forceRemoveStar", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 597, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GalaxyViewerPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "gui_voidcore_manager.js", - "path": "./development/nyaflow/plugins_bak/_legacy/gui_voidcore_manager.js", - "language": "javascript", - "size_bytes": 5131, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.781862612Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 22, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runSelectedDemo", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GUIVoidCoreManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "logger.js", - "path": "./development/nyaflow/plugins_bak/_legacy/logger.js", - "language": "javascript", - "size_bytes": 424, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.785153351Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 7, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 11, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LoggerPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "markdownrenderer.js", - "path": "./development/nyaflow/plugins_bak/_legacy/markdownrenderer.js", - "language": "javascript", - "size_bytes": 2739, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.788767366Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 8, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateMessageReceived", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MarkdownRendererPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "observer.js", - "path": "./development/nyaflow/plugins_bak/_legacy/observer.js", - "language": "javascript", - "size_bytes": 3906, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.792483139Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCogitoQuestion", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateCharacter", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_addToLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ObserverPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system_metrics.js", - "path": "./development/nyaflow/plugins_bak/_legacy/system_metrics.js", - "language": "javascript", - "size_bytes": 3448, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.796129152Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_gatherRealMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SystemMetricsPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "textinput.js", - "path": "./development/nyaflow/plugins_bak/_legacy/textinput.js", - "language": "javascript", - "size_bytes": 8575, - "total_lines": 260, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.799953888Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_work", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_handleProposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_shouldRetire", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 173, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_onTextChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_animateMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 260, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TextInputPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "traffic_light.js", - "path": "./development/nyaflow/plugins_bak/_legacy/traffic_light.js", - "language": "javascript", - "size_bytes": 6039, - "total_lines": 182, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.804175315Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_prepare", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 31, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_createTrafficLight", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startCycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 79, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_changeLight", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyOverride", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleEmergencyCleared", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_logMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retire", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TrafficLightPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "save-plugin.py", - "path": "./development/nyaflow/save-plugin.py", - "language": "python", - "size_bytes": 3703, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.814343530Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_do_OPTIONS", - "name": "do_OPTIONS", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 20, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_do_POST", - "name": "do_POST", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 86, - "column_start": 4, - "column_end": 53, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_log_message", - "name": "log_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "format", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_FileSaveHandler", - "name": "FileSaveHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 90, - "column_start": 0, - "column_end": 12, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "do_OPTIONS", - "do_POST", - "log_message" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "http.server HTTPServer, BaseHTTPRequestHandler", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - }, - { - "module": "urllib.parse parse_qs, urlparse", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 11 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel-manager.js", - "path": "./development/nyaflow/src_back/core/channel-manager.js", - "language": "javascript", - "size_bytes": 8543, - "total_lines": 266, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.829129357Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "disableMultiChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectChannelName", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createTypeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageTypesForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscribersForChannel", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 265, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ChannelManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-communication.js", - "path": "./development/nyaflow/src_back/core/core-communication.js", - "language": "javascript", - "size_bytes": 11603, - "total_lines": 402, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.833383974Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 126, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreById", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRegisteredCores", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCoreCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMessageHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCommunicationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 166, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_deliverToCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_calculateAverageDeliveryTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 241, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerUICore", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fastUpdate", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleHighFrequencyEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "configureBatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUIStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_scheduleBatchProcessing", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeUIOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_groupOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeBatchedOperations", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DirectUIChannel", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core-fusion.js", - "path": "./development/nyaflow/src_back/core/core-fusion.js", - "language": "javascript", - "size_bytes": 10643, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.837754781Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "canFuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 117, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "captureSourceInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "mergeChannelManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "basicChannelManagerMerge", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "movePluginsTo", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPluginState", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendFusionNotifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroySourceCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearFusionHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreFusion", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hierarchy-manager.js", - "path": "./development/nyaflow/src_back/core/hierarchy-manager.js", - "language": "javascript", - "size_bytes": 25230, - "total_lines": 896, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.842506750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 136, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reparentPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDepth", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAncestors", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getRootPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getLeafPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateAddChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateReparenting", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateHierarchy", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 433, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectCycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectOrphans", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectDepthViolations", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToHierarchy", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 568, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromHierarchy", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 594, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDepths", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 624, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 644, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkDependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 691, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHierarchy", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 711, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOperationHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateAddStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 732, - "line_end": 734, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRemoveStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 742, - "line_end": 744, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateReparentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 753, - "line_end": 755, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateValidationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 770, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 778, - "line_end": 792, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 803, - "line_end": 808, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emitEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 826, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addValidationRule", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 838, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runCustomValidation", - "symbol_type": "Function", - "file_path": "", - "line_start": 846, - "line_end": 858, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 874, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 883, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createHierarchyManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 891, - "line_end": 893, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "HierarchyManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 884, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent-handler.js", - "path": "./development/nyaflow/src_back/core/intent-handler.js", - "language": "javascript", - "size_bytes": 17843, - "total_lines": 604, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.847562378Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 108, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reparentPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 439, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemHierarchy", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 451, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateIntentMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 489, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateCorrelationId", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProcessingStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addIntentRule", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 561, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 582, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 601, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 592, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore.js", - "path": "./development/nyaflow/src_back/core/nyacore.js", - "language": "javascript", - "size_bytes": 11986, - "total_lines": 396, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.851908974Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performAsyncInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeAsParentCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_startSystemBootSequence", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_sendSystemBootReadyIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "receiveMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 217, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 243, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fuseWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 300, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChannelManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_initializeSystemMessageHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyacore_base.js", - "path": "./development/nyaflow/src_back/core/nyacore_base.js", - "language": "javascript", - "size_bytes": 3969, - "total_lines": 135, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.855769079Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_ensureInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_performInitialization", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "enableDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "debugLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_publishValidMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-attributes.js", - "path": "./development/nyaflow/src_back/core/plugin-attributes.js", - "language": "javascript", - "size_bytes": 13758, - "total_lines": 439, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.860005764Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSimilarity", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 208, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "matchesSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 221, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "matchesFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fromJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUsageStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDefaultForCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 390, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCategoryStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 403, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateTagCloud", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginAttributes", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-loader.js", - "path": "./development/nyaflow/src_back/core/plugin-loader.js", - "language": "javascript", - "size_bytes": 13863, - "total_lines": 521, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.864664142Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerMultiplePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSortedPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginsInBatches", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 181, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createBatches", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadSinglePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "waitForLoading", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginError", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLoadingStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCacheHit", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLoadingState", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unloadPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearCache", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPluginsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 441, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "delay", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "searchPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 487, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 515, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginLoader", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-manager.js", - "path": "./development/nyaflow/src_back/core/plugin-manager.js", - "language": "javascript", - "size_bytes": 21461, - "total_lines": 721, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.869753454Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroyPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reparentPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 275, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPluginInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 384, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 421, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 425, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generatePluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePluginConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginIdFromIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateParentChildIndex", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 508, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 527, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 553, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getOperationHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 562, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCreationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateDestroyStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 586, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 610, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 626, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emitEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 644, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 665, - "line_end": 668, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 678, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setManagers", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 699, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 708, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 718, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-serializer.js", - "path": "./development/nyaflow/src_back/core/plugin-serializer.js", - "language": "javascript", - "size_bytes": 16387, - "total_lines": 614, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.874762291Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeAttributes", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 112, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 164, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeDependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeConfiguration", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 222, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeStatistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "serializeMetadata", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserializeSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 370, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 368, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserializeMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "deserializeConfiguration", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveToFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadFromFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveMultiplePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractParameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractDocumentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractImports", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSerializable", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractSourceFromMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateSerialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadJSZip", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 608, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 605, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginSerializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 609, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-intent-handler.js", - "path": "./development/nyaflow/src_back/core/unified-intent-handler.js", - "language": "javascript", - "size_bytes": 24775, - "total_lines": 754, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.879889469Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeHandlers", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_executeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 219, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootReady", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemBootRestart", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 335, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 330, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionFuse", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleFusionStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemClear", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 427, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemConnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleSystemReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forwardToExistingSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 564, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordIntentHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 602, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 625, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterIntentHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 662, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 669, - "line_end": 679, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 687, - "line_end": 697, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 713, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedIntentHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 752, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-plugin-manager.js", - "path": "./development/nyaflow/src_back/core/unified-plugin-manager.js", - "language": "javascript", - "size_bytes": 14262, - "total_lines": 519, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.884733261Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCreatePluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroyPluginIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 240, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByType", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginsByParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 293, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getTypeDistribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginFactory", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 329, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validatePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 374, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromTypeMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 401, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeFromParentMap", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRegistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUnregistrationStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 482, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 487, - "line_end": 516, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedPluginManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified-stats-manager.js", - "path": "./development/nyaflow/src_back/core/unified-stats-manager.js", - "language": "javascript", - "size_bytes": 18321, - "total_lines": 662, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.889541914Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectAllStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectCoreStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectIntentStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 215, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectChannelStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 256, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectPerformanceStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createStatsSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineOverallHealth", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 346, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateRecommendations", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStatsHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStatsTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 440, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 430, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processStatsMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setThreshold", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addStatsListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 498, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 518, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopAutoCollection", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMetricValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateTrend", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 576, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isThresholdExceeded", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "triggerAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 610, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheHits", - "symbol_type": "Function", - "file_path": "", - "line_start": 616, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCacheMisses", - "symbol_type": "Function", - "file_path": "", - "line_start": 624, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 639, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 659, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UnifiedStatsManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 660, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.js", - "path": "./development/nyaflow/src_back/core.js", - "language": "javascript", - "size_bytes": 4242, - "total_lines": 141, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.894246029Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "provide", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "retract", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "observe", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "_notifyChange", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 138, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "CoreBulletinBoard", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "monaco-integration.js", - "path": "./development/nyaflow/src_back/experimental/monaco-integration.js", - "language": "javascript", - "size_bytes": 16436, - "total_lines": 534, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.899620225Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupVoidCoreLangageFeatures", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEditorEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCodeCompletion", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getVoidCoreCompletions", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 331, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "provideHoverInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupKeyboardShortcuts", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCurrentCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveCurrentFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "openCommandPalette", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 424, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 444, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showSuccessIndicator", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showErrorIndicator", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showValidationSuccess", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showValidationError", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dispose", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 503, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 511, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "focus", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateContextualHelp", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "autoSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 531, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MonacoIntegration", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-monitor-dashboard.js", - "path": "./development/nyaflow/src_back/experimental/plugin-monitor-dashboard.js", - "language": "javascript", - "size_bytes": 29507, - "total_lines": 1021, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.904588024Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDashboardUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addDashboardStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startVoidCoreMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 465, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onPluginRegistered", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 558, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onPluginUnregistered", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 566, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMessageMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startHealthChecking", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 610, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 600, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 607, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "performHealthChecks", - "symbol_type": "Function", - "file_path": "", - "line_start": 612, - "line_end": 639, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 633, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordHealthResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 665, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordHealthTimeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 675, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordHealthError", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 686, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateSystemMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 702, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 697, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 698, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateMessageRate", - "symbol_type": "Function", - "file_path": "", - "line_start": 704, - "line_end": 712, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 708, - "line_end": 708, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 709, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateAverageResponseTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 722, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 716, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 728, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateSystemMetricsUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 735, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginListUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 737, - "line_end": 781, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 744, - "line_end": 751, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 761, - "line_end": 780, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 764, - "line_end": 764, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStatusClass", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 788, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getHealthIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 790, - "line_end": 797, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 809, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 801, - "line_end": 803, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showPluginDetails", - "symbol_type": "Function", - "file_path": "", - "line_start": 811, - "line_end": 906, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 901, - "line_end": 901, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addAlert", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 928, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateAlertPanelUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 930, - "line_end": 953, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 952, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 959, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 963, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 967, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startPeriodicUpdates", - "symbol_type": "Function", - "file_path": "", - "line_start": 970, - "line_end": 983, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 971, - "line_end": 980, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 976, - "line_end": 978, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 985, - "line_end": 993, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 995, - "line_end": 999, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1001, - "line_end": 1008, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dispose", - "symbol_type": "Function", - "file_path": "", - "line_start": 1010, - "line_end": 1018, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginMonitorDashboard", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 1019, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "project-manager.js", - "path": "./development/nyaflow/src_back/experimental/project-manager.js", - "language": "javascript", - "size_bytes": 49031, - "total_lines": 1478, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.911360119Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 53, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadZipLibrary", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 131, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createProjectManagerUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addProjectManagerStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 471, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 509, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 494, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadProjectData", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 529, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectZip", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 684, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportProjectJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 700, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 722, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 720, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectZip", - "symbol_type": "Function", - "file_path": "", - "line_start": 724, - "line_end": 808, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "importProjectJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 828, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 822, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addCurrentPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 834, - "line_end": 881, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addCurrentEditorPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 986, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 951, - "line_end": 951, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 952, - "line_end": 952, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 988, - "line_end": 1008, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractMessageTypes", - "symbol_type": "Function", - "file_path": "", - "line_start": 1010, - "line_end": 1039, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1024, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1030, - "line_end": 1035, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginStructure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1041, - "line_end": 1078, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1071, - "line_end": 1072, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1073, - "line_end": 1073, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wrapPluginSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1080, - "line_end": 1091, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unwrapPluginSourceCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1093, - "line_end": 1103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1096, - "line_end": 1096, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1097, - "line_end": 1097, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateConnectionsFromPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1105, - "line_end": 1128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1110, - "line_end": 1124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1111, - "line_end": 1123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateMessageFlowFromConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1133, - "line_end": 1139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "downloadBlob", - "symbol_type": "Function", - "file_path": "", - "line_start": 1144, - "line_end": 1155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "restorePlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 1157, - "line_end": 1176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1163, - "line_end": 1175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wrapPluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1178, - "line_end": 1187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executePluginCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1189, - "line_end": 1201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateMessageFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 1207, - "line_end": 1232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1211, - "line_end": 1225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1213, - "line_end": 1223, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateFlowDiagram", - "symbol_type": "Function", - "file_path": "", - "line_start": 1234, - "line_end": 1258, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1245, - "line_end": 1255, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadProjectHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 1264, - "line_end": 1276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateProjectHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 1278, - "line_end": 1294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1280, - "line_end": 1280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateHistoryUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 1296, - "line_end": 1322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1306, - "line_end": 1321, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "newProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 1328, - "line_end": 1339, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateProjectId", - "symbol_type": "Function", - "file_path": "", - "line_start": 1341, - "line_end": 1343, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupEventListeners", - "symbol_type": "Function", - "file_path": "", - "line_start": 1345, - "line_end": 1375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1347, - "line_end": 1347, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1348, - "line_end": 1348, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1349, - "line_end": 1349, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1350, - "line_end": 1350, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1352, - "line_end": 1352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1359, - "line_end": 1364, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1368, - "line_end": 1373, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 1377, - "line_end": 1381, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginsListUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 1383, - "line_end": 1412, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1393, - "line_end": 1411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1396, - "line_end": 1396, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "selectPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 1414, - "line_end": 1428, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1416, - "line_end": 1418, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startAutoSave", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1432, - "line_end": 1436, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "showNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 1440, - "line_end": 1463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1460, - "line_end": 1462, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dispose", - "symbol_type": "Function", - "file_path": "", - "line_start": 1465, - "line_end": 1475, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ProjectManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 1476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal-flow-integration.js", - "path": "./development/nyaflow/src_back/experimental/universal-flow-integration.js", - "language": "javascript", - "size_bytes": 13713, - "total_lines": 464, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.917395102Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "integrateFlowEngine", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 104, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createAndRegisterNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractNodesFromEngine", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 197, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupExecutionHooks", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 209, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "universalExecuteNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginList", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setExecutionMode", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 324, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidFlowIntegrationConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createReactFlowIntegrationConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 445, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 452, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 464, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UniversalFlowIntegration", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal-node-integration.js", - "path": "./development/nyaflow/src_back/experimental/universal-node-integration.js", - "language": "javascript", - "size_bytes": 16571, - "total_lines": 604, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.922131425Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidFlowConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 67, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createReactFlowConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createCustomConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 145, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 232, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 276, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createContext", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "overrideEngineMethods", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "fallbackExecution", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateCorrelationId", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 359, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "track", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 411, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 404, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 419, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 442, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolve", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 458, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidFlowIntegrationConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 522, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 506, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createReactFlowIntegrationConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 547, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 539, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 553, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 560, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 564, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "overrideExecutionMethod", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 570, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "originalExecute", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 577, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 586, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 594, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "overrideExecutionMethod", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 598, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "originalExecute", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 603, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UniversalNodeIntegration", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 341, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "UniversalStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 387, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "UniversalSandbox", - "symbol_type": "Class", - "file_path": "", - "line_start": 392, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "UniversalLogger", - "symbol_type": "Class", - "file_path": "", - "line_start": 425, - "line_end": 443, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultPluginResolver", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "UniversalPluginLoader", - "symbol_type": "Class", - "file_path": "", - "line_start": 464, - "line_end": 485, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "VoidFlowEngineAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 552, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ReactFlowEngineAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 583, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "void-ide-genesis.js", - "path": "./development/nyaflow/src_back/experimental/void-ide-genesis.js", - "language": "javascript", - "size_bytes": 15775, - "total_lines": 541, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.926814657Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializeUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "prepareMonacoEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initializePluginRuntime", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 170, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMessageMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 206, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createDefaultProject", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "safeEval", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "generateVoidCoreCompletions", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginCreated", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 479, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handlePluginExecuted", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 484, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleExecuteCodeRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 495, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleLoadProjectRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 505, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runtimeLog", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 517, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginStatus", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 526, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getIDEStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 537, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidIDEGenesis", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 538, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-interface.js", - "path": "./development/nyaflow/src_back/interfaces/plugin-interface.js", - "language": "javascript", - "size_bytes": 4867, - "total_lines": 153, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.932214666Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleCustomIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleGetInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleUpdateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleDestroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSummary", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal-plugin-interface.js", - "path": "./development/nyaflow/src_back/interfaces/universal-plugin-interface.js", - "language": "javascript", - "size_bytes": 19987, - "total_lines": 661, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.936870927Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "universalExecute", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeForVoidFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeForReactFlow", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 161, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeForNodeRed", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeForScratch", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeGeneric", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 245, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "processData", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 271, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMiddleware", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 280, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerExtension", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 290, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "executeExtension", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 314, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addCapability", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 323, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isCompatibleWith", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 333, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 344, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 360, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfiguration", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 429, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDetailedInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 466, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerSystem", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUniversalPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerPluginTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 514, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createFromTemplate", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "migratePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 553, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSystemStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 574, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAggregatedExecutionStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createUniversalPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 597, - "line_end": 603, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkSystemCompatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 613, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzePluginStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 658, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "IUniversalPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "IUniversalCorePlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 455, - "line_end": 590, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "galaxy-layout.js", - "path": "./development/nyaflow/src_back/layout/galaxy-layout.js", - "language": "javascript", - "size_bytes": 13041, - "total_lines": 452, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.942835415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "categorizeElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "shouldBeInCenter", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateOrbits", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateCenterPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 195, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateOrbitPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 234, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 230, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startRotationAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 254, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOrbitPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 288, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 287, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 286, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopRotationAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 298, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createNebulaEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawOrbitLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 358, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 372, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 398, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findBestOrbit", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 432, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 431, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GalaxyLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "grid-layout.js", - "path": "./development/nyaflow/src_back/layout/grid-layout.js", - "language": "javascript", - "size_bytes": 15591, - "total_lines": 575, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.947855474Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateContainerInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 113, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortByName", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 153, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortBySize", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 169, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementName", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 214, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateGridSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createGridCells", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "assignElementsToCells", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 305, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateElementScale", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "compactLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findOptimalCell", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 380, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "groupByCategory", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 402, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 399, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateGroupedLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 426, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 423, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateGroupLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 453, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 450, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateGroupHeight", - "symbol_type": "Function", - "file_path": "", - "line_start": 458, - "line_end": 463, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawGridLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 507, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 546, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findEmptyCell", - "symbol_type": "Function", - "file_path": "", - "line_start": 551, - "line_end": 553, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 572, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 567, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "GridLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 573, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "layout-manager.js", - "path": "./development/nyaflow/src_back/layout/layout-manager.js", - "language": "javascript", - "size_bytes": 13094, - "total_lines": 508, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.952668319Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerDefaultLayouts", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 71, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "registerLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unregisterLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAvailableLayouts", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "switchLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyLayoutDirect", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 159, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "performTransition", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 190, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animateTransition", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 229, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 228, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 225, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 218, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "interpolatePosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 259, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "easeInOut", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setContainer", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 282, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 296, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 310, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 302, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getCurrentLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 317, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateLayoutConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "refreshLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 337, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "previewLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 363, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "saveLayoutPreference", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 382, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "loadLayoutPreference", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 400, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyDefaultLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 417, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 438, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 460, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 470, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LayoutManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 504, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "layout-plugin-base.js", - "path": "./development/nyaflow/src_back/layout/layout-plugin-base.js", - "language": "javascript", - "size_bytes": 11077, - "total_lines": 417, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.957423144Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateContainerSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cachePositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 140, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animateToPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animateElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 183, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setPositionsImmediate", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 199, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 216, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setElementPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "easeInOut", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 253, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 261, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 289, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 299, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDefaultPosition", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementSize", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkCollision", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 345, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "ensureInBounds", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 365, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "emit", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 378, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 389, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setActive", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "LayoutPluginBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 415, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "radial-layout.js", - "path": "./development/nyaflow/src_back/layout/radial-layout.js", - "language": "javascript", - "size_bytes": 15642, - "total_lines": 535, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.962112182Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sortElementsByPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 89, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElementPriority", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 105, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateRings", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 141, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateRingPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 184, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateSpiralPositions", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 227, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 224, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startPulseAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 247, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyPulseEffect", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 273, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 272, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stopPulseAnimation", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 284, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adjustAngles", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 316, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findElementRing", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 328, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawRadialLines", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 386, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 357, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 361, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawCenterPoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 406, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 420, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetLayout", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 481, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "findBestRing", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 493, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 492, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "placeElementAtAngle", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 513, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 532, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "RadialLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 533, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/src_back/message.js", - "language": "javascript", - "size_bytes": 5426, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.966811956Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message.js", - "path": "./development/nyaflow/src_back/messaging/message.js", - "language": "javascript", - "size_bytes": 5426, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.971873231Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intent", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 41, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "intentResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notice", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "proposal", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withSource", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "withTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isValid", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 101, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescription", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "toLogString", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLegacyMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "Message", - "symbol_type": "Class", - "file_path": "", - "line_start": 6, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple-message-pool.js", - "path": "./development/nyaflow/src_back/messaging/simple-message-pool.js", - "language": "javascript", - "size_bytes": 5540, - "total_lines": 190, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.975587169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isSafeForParallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 56, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "submitBatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 122, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 85, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publishAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 137, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 152, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resetStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "SimpleMessagePool", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "transport.js", - "path": "./development/nyaflow/src_back/messaging/transport.js", - "language": "javascript", - "size_bytes": 10747, - "total_lines": 395, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.979654234Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 52, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 75, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 128, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 144, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 150, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 168, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 203, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 198, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 237, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 249, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "attemptReconnect", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 264, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 285, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 274, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 294, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 322, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 319, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 338, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 356, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 355, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleIncomingMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 369, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 367, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 385, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 375, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 383, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "ITransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "DefaultTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 151, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "WebSocketTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 295, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BroadcastChannelTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 300, - "line_end": 395, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin-store.js", - "path": "./development/nyaflow/src_back/plugins/plugin-store.js", - "language": "javascript", - "size_bytes": 2942, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.985090340Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 10, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 15, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removePlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPlugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getAllPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getPluginCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getChildren", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resolvePendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 57, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "allocateResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "releaseResource", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getResourceUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "hasValidParent", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "wouldCreateCircularReference", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 84, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDescendants", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 114, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PluginStore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 115, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message-flow-visualizer.js", - "path": "./development/nyaflow/src_back/utils/message-flow-visualizer.js", - "language": "javascript", - "size_bytes": 18229, - "total_lines": 620, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.990826816Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidCoreNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 125, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPluginNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 157, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 171, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMessageMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "determineMessageTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 244, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNodeActivity", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 252, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 266, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 277, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "animate", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 304, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 303, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateMessages", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 327, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 318, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 326, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 325, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addMessageParticles", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 352, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 332, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 351, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "render", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 377, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderConnections", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 397, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 394, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 393, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 435, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 434, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderMessageParticles", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 448, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 447, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 446, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderMessageTrails", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 478, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 477, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 454, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 476, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 501, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 500, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupCanvasEvents", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 536, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 520, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 519, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 535, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 534, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "onNodeClick", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 545, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setupResizeHandler", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 557, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 556, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "repositionNodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 578, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 571, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 577, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 589, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clearHistory", - "symbol_type": "Function", - "file_path": "", - "line_start": 591, - "line_end": 595, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 597, - "line_end": 604, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dispose", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 617, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MessageFlowVisualizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 618, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "performance-metrics-system.js", - "path": "./development/nyaflow/src_back/utils/performance-metrics-system.js", - "language": "javascript", - "size_bytes": 34630, - "total_lines": 1177, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:45.996811057Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createPerformanceUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addPerformanceStyles", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 379, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "integrateWithVoidCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 414, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 405, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMessageMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 449, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "extractPluginId", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 459, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPluginMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 491, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "monitorPluginPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 503, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 502, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startPluginMonitoring", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 530, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 528, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordPluginExecution", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 542, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "monitorTransportPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 555, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 554, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeTransportPerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 569, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "startMeasurement", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 591, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 582, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 587, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "collectSystemMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 613, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "calculateMessageRate", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 628, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 627, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "estimateCPUUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 630, - "line_end": 640, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "sampleRealtimeData", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 656, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateRealtimeData", - "symbol_type": "Function", - "file_path": "", - "line_start": 658, - "line_end": 670, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 669, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 681, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectMemoryLeaks", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 694, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "detectSlowPlugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 708, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 707, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "suggestOptimizations", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 728, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginRankings", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 742, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 739, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 753, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateOverviewCards", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 773, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateCharts", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 779, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawMemoryChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 781, - "line_end": 836, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 826, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawMessageChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 838, - "line_end": 868, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 861, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "drawLatencyChart", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 907, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 872, - "line_end": 872, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 880, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 890, - "line_end": 896, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 903, - "line_end": 906, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createLatencyHistogram", - "symbol_type": "Function", - "file_path": "", - "line_start": 909, - "line_end": 927, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 915, - "line_end": 919, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 921, - "line_end": 924, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updatePluginPerformanceList", - "symbol_type": "Function", - "file_path": "", - "line_start": 929, - "line_end": 969, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 942, - "line_end": 968, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addBottleneck", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 1000, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 977, - "line_end": 978, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateBottlenecksList", - "symbol_type": "Function", - "file_path": "", - "line_start": 1002, - "line_end": 1029, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1013, - "line_end": 1028, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "formatUptime", - "symbol_type": "Function", - "file_path": "", - "line_start": 1035, - "line_end": 1047, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkBrowserSupport", - "symbol_type": "Function", - "file_path": "", - "line_start": 1049, - "line_end": 1058, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "togglePause", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1066, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "pause", - "symbol_type": "Function", - "file_path": "", - "line_start": 1068, - "line_end": 1081, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "resume", - "symbol_type": "Function", - "file_path": "", - "line_start": 1083, - "line_end": 1086, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 1088, - "line_end": 1107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "exportData", - "symbol_type": "Function", - "file_path": "", - "line_start": 1109, - "line_end": 1130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addObserver", - "symbol_type": "Function", - "file_path": "", - "line_start": 1133, - "line_end": 1135, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "removeObserver", - "symbol_type": "Function", - "file_path": "", - "line_start": 1137, - "line_end": 1139, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "notifyObservers", - "symbol_type": "Function", - "file_path": "", - "line_start": 1141, - "line_end": 1149, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 1142, - "line_end": 1148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getMetrics", - "symbol_type": "Function", - "file_path": "", - "line_start": 1151, - "line_end": 1158, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "dispose", - "symbol_type": "Function", - "file_path": "", - "line_start": 1160, - "line_end": 1174, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "PerformanceMetricsSystem", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 1175, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "universal-message-adapter.js", - "path": "./development/nyaflow/src_back/utils/universal-message-adapter.js", - "language": "javascript", - "size_bytes": 11662, - "total_lines": 392, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.002073982Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 28, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "validateConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 55, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adapt", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "adaptReverse", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 118, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "applyTransformRules", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 167, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getNestedValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 189, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setNestedValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 205, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "computeField", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 242, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 231, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 238, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "defaultIdGenerator", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 251, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 269, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createVoidFlowAdapterConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 340, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 306, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 308, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 309, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "createReactFlowAdapterConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 371, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 353, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 354, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 362, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 388, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 392, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UniversalMessageAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 279, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "voidcore.js", - "path": "./development/nyaflow/src_back/voidcore.js", - "language": "javascript", - "size_bytes": 2747, - "total_lines": 102, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.006294378Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 8, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "setLogElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 23, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "unsubscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "publish", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 72, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getSubscriberCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "VoidCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-large-tree.js", - "path": "./development/nyaflow/test/test-large-tree.js", - "language": "javascript", - "size_bytes": 6058, - "total_lines": 185, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.011844304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "createTestCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 91, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 110, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 154, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-long-running.js", - "path": "./development/nyaflow/test/test-long-running.js", - "language": "javascript", - "size_bytes": 7749, - "total_lines": 270, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.015903857Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getMemoryUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 58, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordError", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "recordMemorySnapshot", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 69, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getElapsedTime", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getReport", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 102, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 187, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 204, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 270, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "TestStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 88, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "MessageCounterPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-memory-leak.js", - "path": "./development/nyaflow/test/test-memory-leak.js", - "language": "javascript", - "size_bytes": 7891, - "total_lines": 246, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.019826735Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "getMemoryUsage", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "forceGC", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 45, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 98, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 148, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 201, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 191, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 246, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-nyacore-structure.js", - "path": "./development/nyaflow/test/test-nyacore-structure.js", - "language": "javascript", - "size_bytes": 5386, - "total_lines": 145, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.023835946Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-plugin-compatibility.js", - "path": "./development/nyaflow/test/test-plugin-compatibility.js", - "language": "javascript", - "size_bytes": 8473, - "total_lines": 267, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.027695103Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 30, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 37, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "measurePerformance", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 99, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 132, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 165, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 192, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 226, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 248, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 267, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "MockPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "BadPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 66, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "", - "name": "ErrorPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 87, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-quick.js", - "path": "./development/nyaflow/test/test-quick.js", - "language": "javascript", - "size_bytes": 1031, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.031442821Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-shutdown.js", - "path": "./development/nyaflow/test/test-shutdown.js", - "language": "javascript", - "size_bytes": 2845, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.034640632Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-simple-debug.js", - "path": "./development/nyaflow/test/test-simple-debug.js", - "language": "javascript", - "size_bytes": 987, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.037925133Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-ui-stability.js", - "path": "./development/nyaflow/test/test-ui-stability.js", - "language": "javascript", - "size_bytes": 6354, - "total_lines": 183, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.041665253Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "renderNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 32, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "updateNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "oldUILogic", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "newUILogic", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "analyzeStructure", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 163, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 172, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "UIRenderer", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 43, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test-with-cleanup.js", - "path": "./development/nyaflow/test/test-with-cleanup.js", - "language": "javascript", - "size_bytes": 1744, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.045086037Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "createTestCore", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 13, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "cleanupAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_inject.js", - "path": "./development/nyaflow/tests/debug_inject.js", - "language": "javascript", - "size_bytes": 11643, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.070516550Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "checkRegistry", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 49, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "checkInstance", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 127, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "testUI", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 185, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "expandTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 207, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "runAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 220, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "AppNyaMeshNode.cpp", - "path": "./development/nyamesh/cores_v23/app/AppNyaMeshNode.cpp", - "language": "cpp", - "size_bytes": 23169, - "total_lines": 564, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.110376375Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 200, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 230, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 333, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 395, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 445, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 489, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 521, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 528, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 535, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 543, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 553, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 555, - "line_end": 559, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "AppNyaMeshNode.h", - "path": "./development/nyamesh/cores_v23/app/AppNyaMeshNode.h", - "language": "c", - "size_bytes": 8940, - "total_lines": 281, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.112885857Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_AppNyaMeshNode", - "name": "AppNyaMeshNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 4, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AppNyaMeshNode", - "name": "AppNyaMeshNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AppNyaMeshNode", - "name": "AppNyaMeshNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AppNyaMeshNodeFactory", - "name": "AppNyaMeshNodeFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 279, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "AppIntents.h", - "path": "./development/nyamesh/cores_v23/app/intents/AppIntents.h", - "language": "c", - "size_bytes": 10144, - "total_lines": 310, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.118436689Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ApplicationStatisticsData", - "name": "ApplicationStatisticsData", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreStatusData", - "name": "CoreStatusData", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreControlData", - "name": "CoreControlData", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreControlResponseData", - "name": "CoreControlResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PConnectionData", - "name": "P2PConnectionData", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PConnectionResponseData", - "name": "P2PConnectionResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ApplicationControlData", - "name": "ApplicationControlData", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ApplicationControlResponseData", - "name": "ApplicationControlResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIIntegrationData", - "name": "UIIntegrationData", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIIntegrationResponseData", - "name": "UIIntegrationResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 182, - "line_end": 190, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreStateChangedData", - "name": "CoreStateChangedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 203, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ApplicationErrorData", - "name": "ApplicationErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 217, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PNodeConnectedData", - "name": "P2PNodeConnectedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 223, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PNodeDisconnectedData", - "name": "P2PNodeDisconnectedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh_editor.cpp", - "path": "./development/nyamesh/cores_v23/app/nyamesh_editor.cpp", - "language": "cpp", - "size_bytes": 43868, - "total_lines": 1108, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.122596396Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 176, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 203, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 216, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 224, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 261, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 317, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 365, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 411, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 524, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 538, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 550, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 754, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 998, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 1002, - "line_end": 1006, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1008, - "line_end": 1010, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1012, - "line_end": 1038, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1040, - "line_end": 1055, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1057, - "line_end": 1065, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 1070, - "line_end": 1081, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1087, - "line_end": 1089, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 1091, - "line_end": 1099, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh_editor.h", - "path": "./development/nyamesh/cores_v23/app/nyamesh_editor.h", - "language": "c", - "size_bytes": 10911, - "total_lines": 372, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.125790908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 4, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 345, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIHelper", - "name": "UIHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 11, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditorFactory", - "name": "NyaMeshEditorFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh_editor_backup.h", - "path": "./development/nyamesh/cores_v23/app/nyamesh_editor_backup.h", - "language": "c", - "size_bytes": 11104, - "total_lines": 378, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.128651039Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 4, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 351, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIHelper", - "name": "UIHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 11, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditorFactory", - "name": "NyaMeshEditorFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 356, - "line_end": 376, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh_editor_temp.h", - "path": "./development/nyamesh/cores_v23/app/nyamesh_editor_temp.h", - "language": "c", - "size_bytes": 11543, - "total_lines": 379, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.130723771Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 4, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIHelper", - "name": "UIHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 11, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditorFactory", - "name": "NyaMeshEditorFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_test_widget.cpp", - "path": "./development/nyamesh/cores_v23/app/simple_test_widget.cpp", - "language": "cpp", - "size_bytes": 2966, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.132584107Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SimpleTestWidget", - "name": "SimpleTestWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "TabHelper.cpp", - "path": "./development/nyamesh/cores_v23/app/TabHelper.cpp", - "language": "cpp", - "size_bytes": 8219, - "total_lines": 226, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.134631373Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 172, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 224, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "TabHelper.h", - "path": "./development/nyamesh/cores_v23/app/TabHelper.h", - "language": "c", - "size_bytes": 6443, - "total_lines": 170, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.136542798Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TabHelper", - "name": "TabHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TabHelper", - "name": "TabHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 4, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TabHelper", - "name": "TabHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_ZoomableTextEdit", - "name": "ZoomableTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TabHelper", - "name": "TabHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIHelper.cpp", - "path": "./development/nyamesh/cores_v23/app/UIHelper.cpp", - "language": "cpp", - "size_bytes": 9487, - "total_lines": 223, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.138652964Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 161, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 215, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIHelper.h", - "path": "./development/nyamesh/cores_v23/app/UIHelper.h", - "language": "c", - "size_bytes": 6716, - "total_lines": 176, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.140530284Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UIHelper", - "name": "UIHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UIHelper", - "name": "UIHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UIHelper", - "name": "UIHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIHelper", - "name": "UIHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 174, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentConstants.cpp", - "path": "./development/nyamesh/cores_v23/base/IntentConstants.cpp", - "language": "cpp", - "size_bytes": 2670, - "total_lines": 93, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.143370764Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentConstants.h", - "path": "./development/nyamesh/cores_v23/base/IntentConstants.h", - "language": "c", - "size_bytes": 14767, - "total_lines": 403, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.145469277Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 274, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 315, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IntentConstants", - "name": "IntentConstants", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Editor", - "name": "Editor", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Settings", - "name": "Settings", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystem", - "name": "FileSystem", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UI", - "name": "UI", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Localization", - "name": "Localization", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccess", - "name": "QuickAccess", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsKeys", - "name": "SettingsKeys", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Actions", - "name": "Actions", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StandardResponse", - "name": "StandardResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 243, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StandardError", - "name": "StandardError", - "symbol_type": "Class", - "file_path": "", - "line_start": 284, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UltraLightCoreBase_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/base/UltraLightCoreBase_Integrated.cpp", - "language": "cpp", - "size_bytes": 18095, - "total_lines": 507, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.148850004Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 112, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 203, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 249, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 279, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 283, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 292, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 382, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 446, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 475, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 483, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 505, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UltraLightCoreBase_Integrated.h", - "path": "./development/nyamesh/cores_v23/base/UltraLightCoreBase_Integrated.h", - "language": "c", - "size_bytes": 15879, - "total_lines": 464, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.151315529Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_PendingRequest", - "name": "PendingRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 4, - "column_end": 55, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 347, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 352, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 423, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 449, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 462, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IntentReplyManager", - "name": "IntentReplyManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PendingRequest", - "name": "PendingRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "AutoSaveManager.cpp", - "path": "./development/nyamesh/cores_v23/editor/AutoSaveManager.cpp", - "language": "cpp", - "size_bytes": 2893, - "total_lines": 117, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.154443307Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "AutoSaveManager.h", - "path": "./development/nyamesh/cores_v23/editor/AutoSaveManager.h", - "language": "c", - "size_bytes": 3097, - "total_lines": 125, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.156073641Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_QTimer", - "name": "QTimer", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AutoSaveManager", - "name": "AutoSaveManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "EditorCore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/editor/EditorCore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 41921, - "total_lines": 935, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.159772019Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 246, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 598, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 627, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 646, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 668, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 756, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 758, - "line_end": 774, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 776, - "line_end": 782, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 790, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 802, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 806, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 808, - "line_end": 810, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 812, - "line_end": 832, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 834, - "line_end": 840, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 853, - "line_end": 857, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 859, - "line_end": 868, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 873, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 879, - "line_end": 888, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 890, - "line_end": 892, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 902, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 906, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 908, - "line_end": 933, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "EditorCore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/editor/EditorCore_v23_Integrated.h", - "language": "c", - "size_bytes": 11518, - "total_lines": 350, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.162822357Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 4, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QTabWidget", - "name": "QTabWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTextEdit", - "name": "QTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ZoomableTextEdit", - "name": "ZoomableTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EditorBuffer", - "name": "EditorBuffer", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EditorSettings", - "name": "EditorSettings", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EditorCore_v23_Integrated", - "name": "EditorCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EditorCoreIntegratedFactory", - "name": "EditorCoreIntegratedFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 324, - "line_end": 341, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "EditorIntents.h", - "path": "./development/nyamesh/cores_v23/editor/intents/EditorIntents.h", - "language": "c", - "size_bytes": 4255, - "total_lines": 165, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.165911047Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createFileOpen", - "name": "createFileOpen", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_BufferCreatedData", - "name": "BufferCreatedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ContentChangedData", - "name": "ContentChangedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSavedData", - "name": "FileSavedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ErrorData", - "name": "ErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileOpenData", - "name": "FileOpenData", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileOpenedData", - "name": "FileOpenedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ZoomChangedData", - "name": "ZoomChangedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ResponseData", - "name": "ResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LanguageDetector.cpp", - "path": "./development/nyamesh/cores_v23/editor/LanguageDetector.cpp", - "language": "cpp", - "size_bytes": 4313, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.168182245Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LanguageDetector.h", - "path": "./development/nyamesh/cores_v23/editor/LanguageDetector.h", - "language": "c", - "size_bytes": 1622, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.170015882Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_LanguageDetector", - "name": "LanguageDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "SearchReplaceEngine.cpp", - "path": "./development/nyamesh/cores_v23/editor/SearchReplaceEngine.cpp", - "language": "cpp", - "size_bytes": 10013, - "total_lines": 282, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.172677851Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 250, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "SearchReplaceEngine.h", - "path": "./development/nyamesh/cores_v23/editor/SearchReplaceEngine.h", - "language": "c", - "size_bytes": 5055, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.174562799Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SearchMatch", - "name": "SearchMatch", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 29, - "column_start": 4, - "column_end": 93, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SearchOptions", - "name": "SearchOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SearchMatch", - "name": "SearchMatch", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SearchOptions", - "name": "SearchOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SearchReplaceEngine", - "name": "SearchReplaceEngine", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ZoomableTextEdit.cpp", - "path": "./development/nyamesh/cores_v23/editor/ZoomableTextEdit.cpp", - "language": "cpp", - "size_bytes": 5302, - "total_lines": 179, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.176563643Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ZoomableTextEdit.h", - "path": "./development/nyamesh/cores_v23/editor/ZoomableTextEdit.h", - "language": "c", - "size_bytes": 1634, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.178462382Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_ZoomableTextEdit", - "name": "ZoomableTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemAsyncController.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemAsyncController.cpp", - "language": "cpp", - "size_bytes": 5242, - "total_lines": 169, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.181977075Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemAsyncController.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemAsyncController.h", - "language": "c", - "size_bytes": 3531, - "total_lines": 142, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.183686777Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FileSystemAsyncController", - "name": "FileSystemAsyncController", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileSystemAsyncController", - "name": "FileSystemAsyncController", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemAsyncController", - "name": "FileSystemAsyncController", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemCore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemCore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 52766, - "total_lines": 1303, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.188331090Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 210, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 342, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 358, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 446, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 461, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 469, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 506, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 540, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 553, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 555, - "line_end": 561, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 569, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 593, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 612, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 614, - "line_end": 623, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 625, - "line_end": 630, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 640, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 645, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 660, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 681, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 690, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 762, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 764, - "line_end": 792, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 798, - "line_end": 812, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 814, - "line_end": 853, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 865, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 867, - "line_end": 883, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 900, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 902, - "line_end": 916, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 934, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 936, - "line_end": 951, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 953, - "line_end": 973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 988, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 994, - "line_end": 1013, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_56", - "name": "function_56", - "symbol_type": "Function", - "file_path": "", - "line_start": 1019, - "line_end": 1049, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 1051, - "line_end": 1068, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 1070, - "line_end": 1091, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 1093, - "line_end": 1104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_60", - "name": "function_60", - "symbol_type": "Function", - "file_path": "", - "line_start": 1107, - "line_end": 1138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 1145, - "line_end": 1149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 1151, - "line_end": 1159, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 1161, - "line_end": 1178, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_65", - "name": "function_65", - "symbol_type": "Function", - "file_path": "", - "line_start": 1184, - "line_end": 1186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_66", - "name": "function_66", - "symbol_type": "Function", - "file_path": "", - "line_start": 1188, - "line_end": 1196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_67", - "name": "function_67", - "symbol_type": "Function", - "file_path": "", - "line_start": 1198, - "line_end": 1210, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_68", - "name": "function_68", - "symbol_type": "Function", - "file_path": "", - "line_start": 1224, - "line_end": 1231, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_69", - "name": "function_69", - "symbol_type": "Function", - "file_path": "", - "line_start": 1233, - "line_end": 1236, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_70", - "name": "function_70", - "symbol_type": "Function", - "file_path": "", - "line_start": 1238, - "line_end": 1241, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_71", - "name": "function_71", - "symbol_type": "Function", - "file_path": "", - "line_start": 1245, - "line_end": 1251, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_72", - "name": "function_72", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemCore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemCore_v23_Integrated.h", - "language": "c", - "size_bytes": 26468, - "total_lines": 632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.191916035Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 4, - "column_end": 92, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 197, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QTreeWidget", - "name": "QTreeWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTreeWidgetItem", - "name": "QTreeWidgetItem", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 596, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 249, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCoreIntegratedFactory", - "name": "FileSystemCoreIntegratedFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 601, - "line_end": 623, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemCore_v23_Integrated_GUI.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemCore_v23_Integrated_GUI.h", - "language": "c", - "size_bytes": 1509, - "total_lines": 48, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.193778678Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_QTreeWidget", - "name": "QTreeWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemGUIExtension", - "name": "FileSystemGUIExtension", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemCore_v23_Utils.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemCore_v23_Utils.cpp", - "language": "cpp", - "size_bytes": 3902, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.195585175Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_validatePath", - "name": "validatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_checkPermissions", - "name": "checkPermissions", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_normalizePath", - "name": "normalizePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getRelativePath", - "name": "getRelativePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createTempFile", - "name": "createTempFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createTempDirectory", - "name": "createTempDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validateFileSystemPath", - "name": "validateFileSystemPath", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemCore_v23_Utils.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemCore_v23_Utils.h", - "language": "c", - "size_bytes": 2614, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.197209493Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemDebugLogger.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemDebugLogger.h", - "language": "c", - "size_bytes": 4309, - "total_lines": 120, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.199045649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemDebugLogger", - "name": "FileSystemDebugLogger", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemDriveManager.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemDriveManager.cpp", - "language": "cpp", - "size_bytes": 8608, - "total_lines": 256, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.201209770Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_getDrives", - "name": "getDrives", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_refreshDrivesCache", - "name": "refreshDrivesCache", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getDriveIcon", - "name": "getDriveIcon", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_formatBytes", - "name": "formatBytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getDrivesWindows", - "name": "getDrivesWindows", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getDriveTypeString", - "name": "getDriveTypeString", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 162, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getVolumeLabel", - "name": "getVolumeLabel", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getDrivesLinux", - "name": "getDrivesLinux", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 226, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getMountPoints", - "name": "getMountPoints", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 251, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_statvfs", - "name": "statvfs", - "symbol_type": "Class", - "file_path": "", - "line_start": 212, - "line_end": 212, - "column_start": 4, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemDriveManager.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemDriveManager.h", - "language": "c", - "size_bytes": 2866, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.202973522Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemGUIController.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemGUIController.cpp", - "language": "cpp", - "size_bytes": 23483, - "total_lines": 604, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.205822824Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 105, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 199, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 213, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 226, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 239, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 305, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 337, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 384, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 402, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 427, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 440, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 453, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 475, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 515, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 545, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 556, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemGUIController.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemGUIController.h", - "language": "c", - "size_bytes": 7405, - "total_lines": 258, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.208053688Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FileSystemGUIController", - "name": "FileSystemGUIController", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 4, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileSystemGUIController", - "name": "FileSystemGUIController", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QTreeWidget", - "name": "QTreeWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTreeWidgetItem", - "name": "QTreeWidgetItem", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 21, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QIcon", - "name": "QIcon", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemGUIController", - "name": "FileSystemGUIController", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 166, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemIntentDispatcher.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemIntentDispatcher.cpp", - "language": "cpp", - "size_bytes": 4100, - "total_lines": 122, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.209926558Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemIntentDispatcher.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemIntentDispatcher.h", - "language": "c", - "size_bytes": 3253, - "total_lines": 125, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.211649955Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemIntentDispatcher", - "name": "FileSystemIntentDispatcher", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 115, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemOperations.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemOperations.cpp", - "language": "cpp", - "size_bytes": 28437, - "total_lines": 737, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.214951722Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_listDirectory", - "name": "listDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createDirectory", - "name": "createDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_removeDirectory", - "name": "removeDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_readFile", - "name": "readFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_writeFile", - "name": "writeFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createFile", - "name": "createFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_deleteFile", - "name": "deleteFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_moveItem", - "name": "moveItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 378, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_copyItem", - "name": "copyItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validatePath", - "name": "validatePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 461, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_checkPermissions", - "name": "checkPermissions", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 488, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validateCopyPaths", - "name": "validateCopyPaths", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_prepareCopyTarget", - "name": "prepareCopyTarget", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 531, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_executeCopyOperation", - "name": "executeCopyOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 546, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_finalizeCopyOperation", - "name": "finalizeCopyOperation", - "symbol_type": "Function", - "file_path": "", - "line_start": 548, - "line_end": 572, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_searchFiles", - "name": "searchFiles", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 633, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_findByName", - "name": "findByName", - "symbol_type": "Function", - "file_path": "", - "line_start": 635, - "line_end": 643, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_findByExtensions", - "name": "findByExtensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 653, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getItemInfo", - "name": "getItemInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 659, - "line_end": 684, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pathExists", - "name": "pathExists", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 700, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getDiskSpace", - "name": "getDiskSpace", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 718, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createTempFile", - "name": "createTempFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 720, - "line_end": 734, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemOperations.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemOperations.h", - "language": "c", - "size_bytes": 11097, - "total_lines": 290, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.217437804Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTypes.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemTypes.cpp", - "language": "cpp", - "size_bytes": 17967, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.220366205Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 214, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 249, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 259, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 312, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 335, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 345, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 365, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 389, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_normalizePath", - "name": "normalizePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getRelativePath", - "name": "getRelativePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fileChangeTypeToString", - "name": "fileChangeTypeToString", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 508, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stringToFileChangeType", - "name": "stringToFileChangeType", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 516, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTypes.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemTypes.h", - "language": "c", - "size_bytes": 9095, - "total_lines": 236, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.222644399Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_FileSystemEntry", - "name": "FileSystemEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DirectoryListing", - "name": "DirectoryListing", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileOperationResult", - "name": "FileOperationResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileChangeNotification", - "name": "FileChangeNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SearchFilter", - "name": "SearchFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemEntry", - "name": "FileSystemEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DirectoryListing", - "name": "DirectoryListing", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileOperationResult", - "name": "FileOperationResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileChangeNotification", - "name": "FileChangeNotification", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SearchFilter", - "name": "SearchFilter", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemWatcher.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemWatcher.cpp", - "language": "cpp", - "size_bytes": 10907, - "total_lines": 324, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.226008565Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_watchDirectory", - "name": "watchDirectory", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_watchFile", - "name": "watchFile", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stopWatching", - "name": "stopWatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stopAllWatching", - "name": "stopAllWatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_isWatching", - "name": "isWatching", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getActiveWatchers", - "name": "getActiveWatchers", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_generateWatcherId", - "name": "generateWatcherId", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_isWatchablePath", - "name": "isWatchablePath", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_windowsWatchThread", - "name": "windowsWatchThread", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convertWindowsAction", - "name": "convertWindowsAction", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 222, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_linuxWatchThread", - "name": "linuxWatchThread", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 311, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_convertLinuxMask", - "name": "convertLinuxMask", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_timeval", - "name": "timeval", - "symbol_type": "Class", - "file_path": "", - "line_start": 252, - "line_end": 252, - "column_start": 8, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inotify_event", - "name": "inotify_event", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 12, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inotify_event", - "name": "inotify_event", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 59, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_inotify_event", - "name": "inotify_event", - "symbol_type": "Class", - "file_path": "", - "line_start": 304, - "line_end": 304, - "column_start": 24, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemWatcher.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemWatcher.h", - "language": "c", - "size_bytes": 5294, - "total_lines": 165, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.228134736Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_WatchInfo", - "name": "WatchInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 8, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_WatchInfo", - "name": "WatchInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemWatchManager.cpp", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemWatchManager.cpp", - "language": "cpp", - "size_bytes": 8189, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.230343651Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 178, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 226, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemWatchManager.h", - "path": "./development/nyamesh/cores_v23/filesystem/FileSystemWatchManager.h", - "language": "c", - "size_bytes": 5254, - "total_lines": 184, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.232297559Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_WatchSession", - "name": "WatchSession", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 8, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileSystemWatchManager", - "name": "FileSystemWatchManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 4, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 4, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileSystemWatchManager", - "name": "FileSystemWatchManager", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 4, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 128, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemWatchManager", - "name": "FileSystemWatchManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_WatchSession", - "name": "WatchSession", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 133, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemIntents.h", - "path": "./development/nyamesh/cores_v23/filesystem/intents/FileSystemIntents.h", - "language": "c", - "size_bytes": 4898, - "total_lines": 174, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.235455048Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createFileOpen", - "name": "createFileOpen", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileOpenData", - "name": "FileOpenData", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileResponseData", - "name": "FileResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DirectoryResponseData", - "name": "DirectoryResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_InfoResponseData", - "name": "InfoResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DriveInfo", - "name": "DriveInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 109, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DrivesResponseData", - "name": "DrivesResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemErrorData", - "name": "FileSystemErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_WatchEventData", - "name": "WatchEventData", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTreeBridge.cpp", - "path": "./development/nyamesh/cores_v23/helpers/FileSystemTreeBridge.cpp", - "language": "cpp", - "size_bytes": 7230, - "total_lines": 202, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.240037736Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 194, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTreeBridge.h", - "path": "./development/nyamesh/cores_v23/helpers/FileSystemTreeBridge.h", - "language": "c", - "size_bytes": 2851, - "total_lines": 98, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.241900037Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_FileSystemCore_v23_Integrated", - "name": "FileSystemCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 0, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemTreeBridge", - "name": "FileSystemTreeBridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTreeHelper.cpp", - "path": "./development/nyamesh/cores_v23/helpers/FileSystemTreeHelper.cpp", - "language": "cpp", - "size_bytes": 17002, - "total_lines": 452, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.244495353Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 212, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 310, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 329, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 362, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 396, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 427, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 438, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 450, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "FileSystemTreeHelper.h", - "path": "./development/nyamesh/cores_v23/helpers/FileSystemTreeHelper.h", - "language": "c", - "size_bytes": 7437, - "total_lines": 193, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.246556871Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_IPlatformIconProvider", - "name": "IPlatformIconProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DriveInfo", - "name": "DriveInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 20, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileSystemTreeHelper", - "name": "FileSystemTreeHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentHelper.cpp", - "path": "./development/nyamesh/cores_v23/helpers/IntentHelper.cpp", - "language": "cpp", - "size_bytes": 7794, - "total_lines": 225, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.248582185Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 159, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 223, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentHelper.h", - "path": "./development/nyamesh/cores_v23/helpers/IntentHelper.h", - "language": "c", - "size_bytes": 8407, - "total_lines": 236, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.250417323Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_IntentHelper", - "name": "IntentHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_IntentHelper", - "name": "IntentHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_IntentHelper", - "name": "IntentHelper", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NyaMeshEditor", - "name": "NyaMeshEditor", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 19, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IntentHelper", - "name": "IntentHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 234, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IPlatformIconProvider.h", - "path": "./development/nyamesh/cores_v23/helpers/platform/IPlatformIconProvider.h", - "language": "c", - "size_bytes": 3509, - "total_lines": 113, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.253003124Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IPlatformIconProvider", - "name": "IPlatformIconProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PlatformIconProviderFactory", - "name": "PlatformIconProviderFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LinuxIconHelper.cpp", - "path": "./development/nyamesh/cores_v23/helpers/platform/LinuxIconHelper.cpp", - "language": "cpp", - "size_bytes": 9246, - "total_lines": 264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.255148956Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 141, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 209, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 238, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 262, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LinuxIconHelper.h", - "path": "./development/nyamesh/cores_v23/helpers/platform/LinuxIconHelper.h", - "language": "c", - "size_bytes": 2277, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.256945825Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QFileIconProvider", - "name": "QFileIconProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 0, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LinuxIconHelper", - "name": "LinuxIconHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "PlatformIconProviderFactory.cpp", - "path": "./development/nyamesh/cores_v23/helpers/platform/PlatformIconProviderFactory.cpp", - "language": "cpp", - "size_bytes": 1681, - "total_lines": 56, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.258534532Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_createPlatformIconProvider", - "name": "createPlatformIconProvider", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "WindowsIconHelper.cpp", - "path": "./development/nyamesh/cores_v23/helpers/platform/WindowsIconHelper.cpp", - "language": "cpp", - "size_bytes": 11951, - "total_lines": 424, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.261002628Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_convertHIconToPixmap", - "name": "convertHIconToPixmap", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 194, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 228, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 261, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 299, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 321, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 422, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "WindowsIconHelper.h", - "path": "./development/nyamesh/cores_v23/helpers/platform/WindowsIconHelper.h", - "language": "c", - "size_bytes": 3397, - "total_lines": 110, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.262966797Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_WindowsIconHelper", - "name": "WindowsIconHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LocalizationIntents.h", - "path": "./development/nyamesh/cores_v23/localization/intents/LocalizationIntents.h", - "language": "c", - "size_bytes": 3279, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.267534292Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_TranslationResponseData", - "name": "TranslationResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageChangedData", - "name": "LanguageChangedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageResponseData", - "name": "LanguageResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguagesResponseData", - "name": "LanguagesResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DataResponseData", - "name": "DataResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 95, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EntryResponseData", - "name": "EntryResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationErrorData", - "name": "LocalizationErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LocalizationCore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/localization/LocalizationCore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 40319, - "total_lines": 984, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.271991319Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 189, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 213, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 239, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 287, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 305, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 343, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 348, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 360, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 378, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 418, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 440, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 492, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 522, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 543, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 570, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 850, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 852, - "line_end": 876, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 904, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 910, - "line_end": 912, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 914, - "line_end": 923, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 931, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_normalizeLanguageCode", - "name": "normalizeLanguageCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 937, - "line_end": 959, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parseLanguageCode", - "name": "parseLanguageCode", - "symbol_type": "Function", - "file_path": "", - "line_start": 961, - "line_end": 967, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getSystemLanguage", - "name": "getSystemLanguage", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 982, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 384, - "line_end": 523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LocalizationCore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/localization/LocalizationCore_v23_Integrated.h", - "language": "c", - "size_bytes": 13972, - "total_lines": 381, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.275193189Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_LanguageInfo", - "name": "LanguageInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TranslationEntry", - "name": "TranslationEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LanguagePack", - "name": "LanguagePack", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LocalizationSettings", - "name": "LocalizationSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LanguageChangeNotification", - "name": "LanguageChangeNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 4, - "column_end": 96, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 4, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_LanguageInfo", - "name": "LanguageInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TranslationEntry", - "name": "TranslationEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguagePack", - "name": "LanguagePack", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationSettings", - "name": "LocalizationSettings", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LanguageChangeNotification", - "name": "LanguageChangeNotification", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 162, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCore_v23_Integrated", - "name": "LocalizationCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 199, - "line_end": 330, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LocalizationCoreIntegratedFactory", - "name": "LocalizationCoreIntegratedFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 335, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "QuickAccessIntents.h", - "path": "./development/nyamesh/cores_v23/quickaccess/intents/QuickAccessIntents.h", - "language": "c", - "size_bytes": 4176, - "total_lines": 154, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.279819551Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_BookmarkData", - "name": "BookmarkData", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BookmarksResponseData", - "name": "BookmarksResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_RecentFileData", - "name": "RecentFileData", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_RecentResponseData", - "name": "RecentResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FavoriteData", - "name": "FavoriteData", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FavoritesResponseData", - "name": "FavoritesResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SearchResponseData", - "name": "SearchResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DataResponseData", - "name": "DataResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessErrorData", - "name": "QuickAccessErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "QuickAccessCore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/quickaccess/QuickAccessCore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 30214, - "total_lines": 731, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.283547316Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 112, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 154, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 333, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 368, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 375, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 644, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 672, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 678, - "line_end": 680, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 691, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 699, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accessItemTypeToString", - "name": "accessItemTypeToString", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 717, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stringToAccessItemType", - "name": "stringToAccessItemType", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "QuickAccessCore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/quickaccess/QuickAccessCore_v23_Integrated.h", - "language": "c", - "size_bytes": 15443, - "total_lines": 420, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.286142716Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_AccessItem", - "name": "AccessItem", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_AccessHistoryEntry", - "name": "AccessHistoryEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_BookmarkGroup", - "name": "BookmarkGroup", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_QuickAccessFilter", - "name": "QuickAccessFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SuggestionSettings", - "name": "SuggestionSettings", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 241, - "column_start": 4, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 4, - "column_end": 94, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 4, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 4, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_AccessItem", - "name": "AccessItem", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AccessHistoryEntry", - "name": "AccessHistoryEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BookmarkGroup", - "name": "BookmarkGroup", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessFilter", - "name": "QuickAccessFilter", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SuggestionSettings", - "name": "SuggestionSettings", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCore_v23_Integrated", - "name": "QuickAccessCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 306, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QuickAccessCoreIntegratedFactory", - "name": "QuickAccessCoreIntegratedFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 391, - "line_end": 411, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "SettingsIntents.h", - "path": "./development/nyamesh/cores_v23/settings/intents/SettingsIntents.h", - "language": "c", - "size_bytes": 2366, - "total_lines": 106, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.290550990Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_SettingChangedData", - "name": "SettingChangedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingResponseData", - "name": "SettingResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileResponseData", - "name": "FileResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsErrorData", - "name": "SettingsErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsLoadedData", - "name": "SettingsLoadedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsSavedData", - "name": "SettingsSavedData", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "SettingsCore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/settings/SettingsCore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 40454, - "total_lines": 986, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.294745581Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 342, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 398, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 495, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 507, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 515, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 522, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 536, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 571, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 633, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 661, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 681, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 714, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 724, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 727, - "line_end": 771, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 773, - "line_end": 819, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 821, - "line_end": 859, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 861, - "line_end": 927, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 930, - "line_end": 935, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 937, - "line_end": 939, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 941, - "line_end": 980, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 982, - "line_end": 984, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "SettingsCore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/settings/SettingsCore_v23_Integrated.h", - "language": "c", - "size_bytes": 8212, - "total_lines": 271, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.297416045Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 4, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QDialog", - "name": "QDialog", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTabWidget", - "name": "QTabWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QWidget", - "name": "QWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCore_v23_Integrated", - "name": "SettingsCore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIIntents.h", - "path": "./development/nyamesh/cores_v23/ui/intents/UIIntents.h", - "language": "c", - "size_bytes": 3211, - "total_lines": 139, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.301244339Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_DialogResponseData", - "name": "DialogResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MessageBoxResponseData", - "name": "MessageBoxResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ThemeResponseData", - "name": "ThemeResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_StyleResponseData", - "name": "StyleResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ThemesResponseData", - "name": "ThemesResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ElementResponseData", - "name": "ElementResponseData", - "symbol_type": "Class", - "file_path": "", - "line_start": 110, - "line_end": 115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIEventData", - "name": "UIEventData", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIErrorData", - "name": "UIErrorData", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UICore_v23_Integrated.cpp", - "path": "./development/nyamesh/cores_v23/ui/UICore_v23_Integrated.cpp", - "language": "cpp", - "size_bytes": 57334, - "total_lines": 1506, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.306713708Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 425, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 429, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 443, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 511, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 556, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 640, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 661, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 667, - "line_end": 697, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 728, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 762, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 782, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 821, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 823, - "line_end": 839, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 841, - "line_end": 856, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 858, - "line_end": 885, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 891, - "line_end": 894, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 901, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 903, - "line_end": 905, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 907, - "line_end": 913, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 919, - "line_end": 945, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 970, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 972, - "line_end": 1000, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 1002, - "line_end": 1022, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1028, - "line_end": 1033, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1035, - "line_end": 1040, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1042, - "line_end": 1050, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1052, - "line_end": 1067, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 1069, - "line_end": 1106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1112, - "line_end": 1125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 1127, - "line_end": 1136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 1138, - "line_end": 1143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 1145, - "line_end": 1149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1151, - "line_end": 1153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 1155, - "line_end": 1163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 1169, - "line_end": 1322, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 1324, - "line_end": 1353, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 1355, - "line_end": 1367, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 1369, - "line_end": 1400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 1402, - "line_end": 1419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 1421, - "line_end": 1424, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 1426, - "line_end": 1439, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_EventFilter", - "name": "EventFilter", - "symbol_type": "Function", - "file_path": "", - "line_start": 1447, - "line_end": 1448, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 1451, - "line_end": 1473, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 1480, - "line_end": 1482, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 1484, - "line_end": 1493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 1495, - "line_end": 1503, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 408, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EventFilter", - "name": "EventFilter", - "symbol_type": "Class", - "file_path": "", - "line_start": 1442, - "line_end": 1474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UICore_v23_Integrated.h", - "path": "./development/nyamesh/cores_v23/ui/UICore_v23_Integrated.h", - "language": "c", - "size_bytes": 21068, - "total_lines": 497, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.310434065Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 4, - "column_end": 71, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QWidget", - "name": "QWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMainWindow", - "name": "QMainWindow", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMenuBar", - "name": "QMenuBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QToolBar", - "name": "QToolBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QStatusBar", - "name": "QStatusBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QSplitter", - "name": "QSplitter", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTabWidget", - "name": "QTabWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTextEdit", - "name": "QTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTreeView", - "name": "QTreeView", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QVBoxLayout", - "name": "QVBoxLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QHBoxLayout", - "name": "QHBoxLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QGridLayout", - "name": "QGridLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QAction", - "name": "QAction", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMenu", - "name": "QMenu", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QDialog", - "name": "QDialog", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 52, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMessageBox", - "name": "QMessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QFileDialog", - "name": "QFileDialog", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QProgressBar", - "name": "QProgressBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QLabel", - "name": "QLabel", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QPushButton", - "name": "QPushButton", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QApplication", - "name": "QApplication", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 466, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 472, - "line_end": 472, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICoreIntegratedFactory", - "name": "UICoreIntegratedFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 474, - "line_end": 494, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIEventHandler.cpp", - "path": "./development/nyamesh/cores_v23/ui/UIEventHandler.cpp", - "language": "cpp", - "size_bytes": 3152, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.312452394Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_dispatchUIEvent", - "name": "dispatchUIEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_onUIEvent", - "name": "onUIEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_addEventListener", - "name": "addEventListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_removeEventListener", - "name": "removeEventListener", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_simulateUIEvent", - "name": "simulateUIEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fireUIEvent", - "name": "fireUIEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendCustomEvent", - "name": "sendCustomEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_onElementEvent", - "name": "onElementEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIEventHandler.h", - "path": "./development/nyamesh/cores_v23/ui/UIEventHandler.h", - "language": "c", - "size_bytes": 3925, - "total_lines": 115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.314089295Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIThemeManager.cpp", - "path": "./development/nyamesh/cores_v23/ui/UIThemeManager.cpp", - "language": "cpp", - "size_bytes": 3212, - "total_lines": 89, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.315871824Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_registerTheme", - "name": "registerTheme", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_applyTheme", - "name": "applyTheme", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getCurrentTheme", - "name": "getCurrentTheme", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getAvailableThemes", - "name": "getAvailableThemes", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_applyStyleSheet", - "name": "applyStyleSheet", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getElementStyle", - "name": "getElementStyle", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_initializeDefaultThemes", - "name": "initializeDefaultThemes", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 86, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIThemeManager.h", - "path": "./development/nyamesh/cores_v23/ui/UIThemeManager.h", - "language": "c", - "size_bytes": 4135, - "total_lines": 113, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.317634343Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UITypes.cpp", - "path": "./development/nyamesh/cores_v23/ui/UITypes.cpp", - "language": "cpp", - "size_bytes": 11115, - "total_lines": 302, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.319952945Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 152, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 186, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_qtWidgetToUIElement", - "name": "qtWidgetToUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_validateUIElement", - "name": "validateUIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_generateElementId", - "name": "generateElementId", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_normalizeStyleSheet", - "name": "normalizeStyleSheet", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_uiElementTypeToString", - "name": "uiElementTypeToString", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_stringToUIElementType", - "name": "stringToUIElementType", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UITypes.h", - "path": "./development/nyamesh/cores_v23/ui/UITypes.h", - "language": "c", - "size_bytes": 7331, - "total_lines": 217, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.322016108Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UIEvent", - "name": "UIEvent", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UIElement", - "name": "UIElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LayoutInfo", - "name": "LayoutInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ThemeDefinition", - "name": "ThemeDefinition", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_QWidget", - "name": "QWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMainWindow", - "name": "QMainWindow", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMenuBar", - "name": "QMenuBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QToolBar", - "name": "QToolBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QStatusBar", - "name": "QStatusBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QSplitter", - "name": "QSplitter", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTabWidget", - "name": "QTabWidget", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 0, - "column_end": 16, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTextEdit", - "name": "QTextEdit", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QTreeView", - "name": "QTreeView", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QVBoxLayout", - "name": "QVBoxLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QHBoxLayout", - "name": "QHBoxLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QGridLayout", - "name": "QGridLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QAction", - "name": "QAction", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMenu", - "name": "QMenu", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 11, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QDialog", - "name": "QDialog", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QMessageBox", - "name": "QMessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QFileDialog", - "name": "QFileDialog", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QProgressBar", - "name": "QProgressBar", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QLabel", - "name": "QLabel", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QPushButton", - "name": "QPushButton", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 17, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_QApplication", - "name": "QApplication", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIEvent", - "name": "UIEvent", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UIElement", - "name": "UIElement", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LayoutInfo", - "name": "LayoutInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ThemeDefinition", - "name": "ThemeDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 160, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIWidgetManager.cpp", - "path": "./development/nyamesh/cores_v23/ui/UIWidgetManager.cpp", - "language": "cpp", - "size_bytes": 7627, - "total_lines": 191, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.324062453Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_createElement", - "name": "createElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createElement", - "name": "createElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_removeElement", - "name": "removeElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_updateElement", - "name": "updateElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_updateElement", - "name": "updateElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getElement", - "name": "getElement", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getChildElements", - "name": "getChildElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_setElementVisible", - "name": "setElementVisible", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_setElementEnabled", - "name": "setElementEnabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getAllElements", - "name": "getAllElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getElementCount", - "name": "getElementCount", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_isElementVisible", - "name": "isElementVisible", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_isElementEnabled", - "name": "isElementEnabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getElementGeometry", - "name": "getElementGeometry", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_setElementGeometry", - "name": "setElementGeometry", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_setElementProperty", - "name": "setElementProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getElementProperty", - "name": "getElementProperty", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_searchElements", - "name": "searchElements", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UIWidgetManager.h", - "path": "./development/nyamesh/cores_v23/ui/UIWidgetManager.h", - "language": "c", - "size_bytes": 10462, - "total_lines": 264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.326218095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_UICore_v23_Integrated", - "name": "UICore_v23_Integrated", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CMakeCXXCompilerId.cpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "language": "cpp", - "size_bytes": 27673, - "total_lines": 869, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.350138091Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 869, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/CMakeFiles/nyamesh_v23.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 123, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.359723056Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "foo.h", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/CMakeFiles/ShowIncludes/foo.h", - "language": "c", - "size_bytes": 2, - "total_lines": 1, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.376278685Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.c", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/CMakeFiles/ShowIncludes/main.c", - "language": "c", - "size_bytes": 33, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.378014799Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 2, - "line_end": 2, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "adl_serializer.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/adl_serializer.hpp", - "language": "cpp", - "size_bytes": 2279, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.396216266Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "byte_container_with_subtype.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/byte_container_with_subtype.hpp", - "language": "cpp", - "size_bytes": 3533, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.398146803Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abi_macros.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/abi_macros.hpp", - "language": "cpp", - "size_bytes": 3807, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.400714112Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "from_json.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/conversions/from_json.hpp", - "language": "cpp", - "size_bytes": 18880, - "total_lines": 497, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.405780611Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 380, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 399, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 417, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 437, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 471, - "line_end": 480, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_chars.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/conversions/to_chars.hpp", - "language": "cpp", - "size_bytes": 38503, - "total_lines": 1118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.410406700Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 1115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 486, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 581, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 820, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 879, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 919, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 967, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 1048, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 314, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_json.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/conversions/to_json.hpp", - "language": "cpp", - "size_bytes": 15749, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.414739332Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 288, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 301, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 344, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 357, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 363, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 376, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 392, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 406, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 219, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 422, - "line_end": 429, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exceptions.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/exceptions.hpp", - "language": "cpp", - "size_bytes": 9128, - "total_lines": 255, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.417990291Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_exception", - "name": "exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 217, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 234, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 251, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hash.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/hash.hpp", - "language": "cpp", - "size_bytes": 4016, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.420132162Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_reader.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/binary_reader.hpp", - "language": "cpp", - "size_bytes": 103174, - "total_lines": 3010, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.428292510Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 3009, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 384, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 898, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 994, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1102, - "line_end": 1132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1196, - "line_end": 1565, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1577, - "line_end": 1648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1660, - "line_end": 1765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1771, - "line_end": 1787, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1793, - "line_end": 1817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1830, - "line_end": 1833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1849, - "line_end": 1938, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1944, - "line_end": 1996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 2009, - "line_end": 2219, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 2232, - "line_end": 2293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 2299, - "line_end": 2477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 2482, - "line_end": 2585, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 2590, - "line_end": 2668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 2673, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 2752, - "line_end": 2756, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 2761, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 2788, - "line_end": 2814, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 2831, - "line_end": 2847, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 2864, - "line_end": 2880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 2887, - "line_end": 2896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 2901, - "line_end": 2906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 3002, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input_adapters.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/input_adapters.hpp", - "language": "cpp", - "size_bytes": 17372, - "total_lines": 494, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.433153839Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 305, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 410, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 426, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 436, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 460, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 475, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 482, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 354, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 367, - "line_end": 378, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 399, - "line_end": 399, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 402, - "line_end": 411, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 491, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_sax.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/json_sax.hpp", - "language": "cpp", - "size_bytes": 21370, - "total_lines": 728, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.436883395Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 365, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 366, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 367, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 368, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 369, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 531, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 709, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 345, - "line_end": 649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 652, - "line_end": 725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lexer.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/lexer.hpp", - "language": "cpp", - "size_bytes": 54544, - "total_lines": 1632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.441897748Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 1311, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 838, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 909, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 927, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 1292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 1320, - "line_end": 1325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1364, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 1374, - "line_end": 1398, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 1401, - "line_end": 1404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1412, - "line_end": 1415, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1418, - "line_end": 1421, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1424, - "line_end": 1427, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 1440, - "line_end": 1443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1448, - "line_end": 1469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1472, - "line_end": 1476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 1486, - "line_end": 1498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 1500, - "line_end": 1507, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 1509, - "line_end": 1595, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 1310, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parser.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/parser.hpp", - "language": "cpp", - "size_bytes": 18722, - "total_lines": 507, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.445381895Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 506, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 504, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/input/position_t.hpp", - "language": "cpp", - "size_bytes": 958, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.447395376Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/internal_iterator.hpp", - "language": "cpp", - "size_bytes": 1071, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.450439891Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iteration_proxy.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/iteration_proxy.hpp", - "language": "cpp", - "size_bytes": 7962, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.452707148Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 168, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 154, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 187, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 223, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iterator_traits.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/iterator_traits.hpp", - "language": "cpp", - "size_bytes": 1757, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.454678567Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iter_impl.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/iter_impl.hpp", - "language": "cpp", - "size_bytes": 23906, - "total_lines": 751, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.458240885Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 318, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 273, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 234, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 552, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 616, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 638, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 716, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 732, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 235, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_reverse_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/json_reverse_iterator.hpp", - "language": "cpp", - "size_bytes": 3861, - "total_lines": 130, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.460670997Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "primitive_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/iterators/primitive_iterator.hpp", - "language": "cpp", - "size_bytes": 3227, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.462655640Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_pointer.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/json_pointer.hpp", - "language": "cpp", - "size_bytes": 37067, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.467532574Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 520, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 857, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 865, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 935, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 953, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 960, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 969, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 978, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 985, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_ref.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/json_ref.hpp", - "language": "cpp", - "size_bytes": 1811, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.469992135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_scope.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/macro_scope.hpp", - "language": "cpp", - "size_bytes": 42861, - "total_lines": 468, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.472953104Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 448, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_unscope.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/macro_unscope.hpp", - "language": "cpp", - "size_bytes": 1220, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.474989208Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "begin.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/call_std/begin.hpp", - "language": "cpp", - "size_bytes": 453, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.478394297Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "end.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/call_std/end.hpp", - "language": "cpp", - "size_bytes": 451, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.479861790Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_future.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/cpp_future.hpp", - "language": "cpp", - "size_bytes": 5178, - "total_lines": 171, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.482162859Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "detected.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/detected.hpp", - "language": "cpp", - "size_bytes": 2109, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.484156627Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "identity_tag.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/identity_tag.hpp", - "language": "cpp", - "size_bytes": 526, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.485779041Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "is_sax.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/is_sax.hpp", - "language": "cpp", - "size_bytes": 6960, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.487903473Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "std_fs.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/std_fs.hpp", - "language": "cpp", - "size_bytes": 766, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.489608810Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_traits.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/type_traits.hpp", - "language": "cpp", - "size_bytes": 28099, - "total_lines": 740, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.493833325Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 739, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 584, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 590, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 623, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 707, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 726, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 193, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 206, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 210, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 213, - "line_end": 214, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 218, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_24", - "name": "class_24", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_25", - "name": "class_25", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 241, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 311, - "line_end": 312, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_37", - "name": "class_37", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 348, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 355, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 375, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 390, - "line_end": 391, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 394, - "line_end": 394, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 401, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 404, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 439, - "line_end": 439, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 465, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 468, - "line_end": 474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 477, - "line_end": 478, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 481, - "line_end": 481, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 484, - "line_end": 484, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 487, - "line_end": 487, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 490, - "line_end": 490, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 493, - "line_end": 494, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 498, - "line_end": 498, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 501, - "line_end": 501, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 508, - "line_end": 508, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_62", - "name": "class_62", - "symbol_type": "Class", - "file_path": "", - "line_start": 511, - "line_end": 514, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 564, - "line_end": 577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 614, - "line_end": 614, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_66", - "name": "class_66", - "symbol_type": "Class", - "file_path": "", - "line_start": 617, - "line_end": 624, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_67", - "name": "class_67", - "symbol_type": "Class", - "file_path": "", - "line_start": 627, - "line_end": 634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 637, - "line_end": 644, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 648, - "line_end": 656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 661, - "line_end": 661, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_71", - "name": "class_71", - "symbol_type": "Class", - "file_path": "", - "line_start": 664, - "line_end": 670, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 673, - "line_end": 679, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 713, - "line_end": 713, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 735, - "line_end": 735, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "void_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/meta/void_t.hpp", - "language": "cpp", - "size_bytes": 597, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.496055064Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_writer.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/output/binary_writer.hpp", - "language": "cpp", - "size_bytes": 69893, - "total_lines": 1838, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.505329115Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 1837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 987, - "line_end": 992, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1002, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 1015, - "line_end": 1024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 1029, - "line_end": 1032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1042, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 1047, - "line_end": 1060, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 1065, - "line_end": 1070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 1075, - "line_end": 1092, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 1097, - "line_end": 1102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1107, - "line_end": 1117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1122, - "line_end": 1125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1149, - "line_end": 1158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1164, - "line_end": 1204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1251, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1290, - "line_end": 1293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1304, - "line_end": 1307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1321, - "line_end": 1330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1335, - "line_end": 1417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1423, - "line_end": 1499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1504, - "line_end": 1603, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1608, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1610, - "line_end": 1613, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1618, - "line_end": 1725, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1745, - "line_end": 1759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1761, - "line_end": 1786, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1795, - "line_end": 1798, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1802, - "line_end": 1809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1813, - "line_end": 1816, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1824, - "line_end": 1827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 1835, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "output_adapters.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/output/output_adapters.hpp", - "language": "cpp", - "size_bytes": 4067, - "total_lines": 147, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.509499630Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 127, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 131, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 135, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "serializer.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/output/serializer.hpp", - "language": "cpp", - "size_bytes": 39896, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.514433420Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 670, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 76, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 586, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 691, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 697, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 877, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 955, - "line_end": 959, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 587, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_concat.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/string_concat.hpp", - "language": "cpp", - "size_bytes": 6006, - "total_lines": 146, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.518020678Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 54, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_escape.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/string_escape.hpp", - "language": "cpp", - "size_bytes": 2168, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.519917287Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "value_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/detail/value_t.hpp", - "language": "cpp", - "size_bytes": 4326, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.521836360Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 104, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 193862, - "total_lines": 5214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.544316985Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 651, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 391, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 443, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 445, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 447, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 449, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 451, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 522, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 525, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 528, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 531, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 534, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 537, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 540, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 546, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 549, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 650, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 688, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 958, - "line_end": 965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1020, - "line_end": 1120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1130, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1198, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1202, - "line_end": 1215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1219, - "line_end": 1236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 1240, - "line_end": 1244, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1281, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 1288, - "line_end": 1291, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 1302, - "line_end": 1305, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1316, - "line_end": 1319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 1323, - "line_end": 1326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1330, - "line_end": 1333, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 1344, - "line_end": 1347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1354, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1358, - "line_end": 1361, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1365, - "line_end": 1368, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 1372, - "line_end": 1375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1935, - "line_end": 1939, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1949, - "line_end": 1963, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1958, - "line_end": 1962, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1972, - "line_end": 1986, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1992, - "line_end": 2006, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2010, - "line_end": 2024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2030, - "line_end": 2044, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_66", - "name": "function_66", - "symbol_type": "Function", - "file_path": "", - "line_start": 2048, - "line_end": 2090, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_67", - "name": "function_67", - "symbol_type": "Function", - "file_path": "", - "line_start": 2094, - "line_end": 2103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_68", - "name": "function_68", - "symbol_type": "Function", - "file_path": "", - "line_start": 2107, - "line_end": 2125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_69", - "name": "function_69", - "symbol_type": "Function", - "file_path": "", - "line_start": 2129, - "line_end": 2140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_70", - "name": "function_70", - "symbol_type": "Function", - "file_path": "", - "line_start": 2145, - "line_end": 2148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_71", - "name": "function_71", - "symbol_type": "Function", - "file_path": "", - "line_start": 2151, - "line_end": 2154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_72", - "name": "function_72", - "symbol_type": "Function", - "file_path": "", - "line_start": 2160, - "line_end": 2178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_73", - "name": "function_73", - "symbol_type": "Function", - "file_path": "", - "line_start": 2184, - "line_end": 2195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2239, - "line_end": 2255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2265, - "line_end": 2281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2292, - "line_end": 2308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2315, - "line_end": 2329, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2325, - "line_end": 2328, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2340, - "line_end": 2354, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2350, - "line_end": 2353, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2364, - "line_end": 2367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2375, - "line_end": 2378, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2382, - "line_end": 2385, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2389, - "line_end": 2392, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2396, - "line_end": 2401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2405, - "line_end": 2410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2417, - "line_end": 2480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2487, - "line_end": 2553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2555, - "line_end": 2567, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2571, - "line_end": 2586, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2603, - "line_end": 2606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2610, - "line_end": 2626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2640, - "line_end": 2650, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2654, - "line_end": 2664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2670, - "line_end": 2680, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2686, - "line_end": 2696, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2700, - "line_end": 2704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2710, - "line_end": 2714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2718, - "line_end": 2721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2727, - "line_end": 2730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2734, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2741, - "line_end": 2744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2758, - "line_end": 2763, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2767, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2774, - "line_end": 2779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2783, - "line_end": 2788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2792, - "line_end": 2795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2799, - "line_end": 2804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2808, - "line_end": 2811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2815, - "line_end": 2818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2822, - "line_end": 2825, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2829, - "line_end": 2832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2836, - "line_end": 2839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2843, - "line_end": 2846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2855, - "line_end": 2858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2866, - "line_end": 2869, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2873, - "line_end": 2876, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2880, - "line_end": 2883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 2897, - "line_end": 2932, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2936, - "line_end": 2971, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2975, - "line_end": 3005, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 3019, - "line_end": 3076, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3080, - "line_end": 3101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 3105, - "line_end": 3109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3113, - "line_end": 3133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_126", - "name": "function_126", - "symbol_type": "Function", - "file_path": "", - "line_start": 3137, - "line_end": 3141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3145, - "line_end": 3164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_128", - "name": "function_128", - "symbol_type": "Function", - "file_path": "", - "line_start": 3168, - "line_end": 3172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3176, - "line_end": 3188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_130", - "name": "function_130", - "symbol_type": "Function", - "file_path": "", - "line_start": 3192, - "line_end": 3196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3201, - "line_end": 3221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 3226, - "line_end": 3252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 3258, - "line_end": 3273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3277, - "line_end": 3293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3297, - "line_end": 3300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3304, - "line_end": 3320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3324, - "line_end": 3351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3355, - "line_end": 3371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3375, - "line_end": 3396, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3400, - "line_end": 3403, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3407, - "line_end": 3450, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3454, - "line_end": 3467, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3471, - "line_end": 3479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3483, - "line_end": 3495, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3499, - "line_end": 3511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3515, - "line_end": 3527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3531, - "line_end": 3543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3547, - "line_end": 3559, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 3636, - "line_end": 3639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 3665, - "line_end": 3668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_151", - "name": "function_151", - "symbol_type": "Function", - "file_path": "", - "line_start": 3674, - "line_end": 3685, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_152", - "name": "function_152", - "symbol_type": "Function", - "file_path": "", - "line_start": 3691, - "line_end": 3694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_153", - "name": "function_153", - "symbol_type": "Function", - "file_path": "", - "line_start": 3698, - "line_end": 3705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_154", - "name": "function_154", - "symbol_type": "Function", - "file_path": "", - "line_start": 3709, - "line_end": 3718, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_155", - "name": "function_155", - "symbol_type": "Function", - "file_path": "", - "line_start": 3724, - "line_end": 3727, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_156", - "name": "function_156", - "symbol_type": "Function", - "file_path": "", - "line_start": 3736, - "line_end": 3743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_157", - "name": "function_157", - "symbol_type": "Function", - "file_path": "", - "line_start": 3749, - "line_end": 3752, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_158", - "name": "function_158", - "symbol_type": "Function", - "file_path": "", - "line_start": 3757, - "line_end": 3764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_159", - "name": "function_159", - "symbol_type": "Function", - "file_path": "", - "line_start": 3770, - "line_end": 3773, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_160", - "name": "function_160", - "symbol_type": "Function", - "file_path": "", - "line_start": 3778, - "line_end": 3788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_161", - "name": "function_161", - "symbol_type": "Function", - "file_path": "", - "line_start": 3794, - "line_end": 3797, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_162", - "name": "function_162", - "symbol_type": "Function", - "file_path": "", - "line_start": 3803, - "line_end": 3806, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_163", - "name": "function_163", - "symbol_type": "Function", - "file_path": "", - "line_start": 3810, - "line_end": 3817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_164", - "name": "function_164", - "symbol_type": "Function", - "file_path": "", - "line_start": 3823, - "line_end": 3826, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_165", - "name": "function_165", - "symbol_type": "Function", - "file_path": "", - "line_start": 3832, - "line_end": 3835, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_166", - "name": "function_166", - "symbol_type": "Function", - "file_path": "", - "line_start": 3839, - "line_end": 4935, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_167", - "name": "function_167", - "symbol_type": "Function", - "file_path": "", - "line_start": 3860, - "line_end": 3863, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_168", - "name": "function_168", - "symbol_type": "Function", - "file_path": "", - "line_start": 3867, - "line_end": 3874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_169", - "name": "function_169", - "symbol_type": "Function", - "file_path": "", - "line_start": 3880, - "line_end": 3883, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 3889, - "line_end": 3892, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 3896, - "line_end": 3904, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_172", - "name": "function_172", - "symbol_type": "Function", - "file_path": "", - "line_start": 3910, - "line_end": 3913, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_173", - "name": "function_173", - "symbol_type": "Function", - "file_path": "", - "line_start": 3919, - "line_end": 3922, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_174", - "name": "function_174", - "symbol_type": "Function", - "file_path": "", - "line_start": 3926, - "line_end": 3933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_175", - "name": "function_175", - "symbol_type": "Function", - "file_path": "", - "line_start": 3939, - "line_end": 3942, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 3948, - "line_end": 3951, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_177", - "name": "function_177", - "symbol_type": "Function", - "file_path": "", - "line_start": 3967, - "line_end": 3980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4007, - "line_end": 4016, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4021, - "line_end": 4031, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4043, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4048, - "line_end": 4052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4057, - "line_end": 4061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4065, - "line_end": 4069, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4075, - "line_end": 4084, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4090, - "line_end": 4099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4109, - "line_end": 4120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 4150, - "line_end": 4175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4213, - "line_end": 4216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4220, - "line_end": 4223, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4227, - "line_end": 4232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4236, - "line_end": 4239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4243, - "line_end": 4246, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4250, - "line_end": 4257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4261, - "line_end": 4265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4269, - "line_end": 4273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4288, - "line_end": 4292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4296, - "line_end": 4300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4309, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4320, - "line_end": 4323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4328, - "line_end": 4339, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4344, - "line_end": 4355, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4360, - "line_end": 4366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4371, - "line_end": 4382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4387, - "line_end": 4397, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4402, - "line_end": 4412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4417, - "line_end": 4422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4426, - "line_end": 4436, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4441, - "line_end": 4451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4456, - "line_end": 4466, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4471, - "line_end": 4476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4496, - "line_end": 4506, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4511, - "line_end": 4521, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4526, - "line_end": 4536, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4541, - "line_end": 4551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4556, - "line_end": 4561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_220", - "name": "function_220", - "symbol_type": "Function", - "file_path": "", - "line_start": 4587, - "line_end": 4590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_221", - "name": "function_221", - "symbol_type": "Function", - "file_path": "", - "line_start": 4594, - "line_end": 4597, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_222", - "name": "function_222", - "symbol_type": "Function", - "file_path": "", - "line_start": 4601, - "line_end": 4604, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_223", - "name": "function_223", - "symbol_type": "Function", - "file_path": "", - "line_start": 4608, - "line_end": 4611, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4615, - "line_end": 4618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4622, - "line_end": 4625, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4629, - "line_end": 4632, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4636, - "line_end": 4639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4643, - "line_end": 4648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4652, - "line_end": 4655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 4668, - "line_end": 4934, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 4948, - "line_end": 5079, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 5091, - "line_end": 5115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 5122, - "line_end": 5126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 5136, - "line_end": 5139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 5144, - "line_end": 5147, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5205, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 5162, - "line_end": 5169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 5165, - "line_end": 5168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 5179, - "line_end": 5187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 5195, - "line_end": 5201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 5173, - "line_end": 5188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 2469, - "total_lines": 74, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.549321329Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ordered_map.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/ordered_map.hpp", - "language": "cpp", - "size_bytes": 11447, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.551995448Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 50, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 52, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/thirdparty/hedley/hedley.hpp", - "language": "cpp", - "size_bytes": 86068, - "total_lines": 2045, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.558377839Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley_undef.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/include/nlohmann/thirdparty/hedley/hedley_undef.hpp", - "language": "cpp", - "size_bytes": 5500, - "total_lines": 158, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.560891001Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/single_include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 907858, - "total_lines": 24596, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.641313457Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 2824, - "line_end": 2920, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 2886, - "line_end": 2907, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2917, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 2921, - "line_end": 2995, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 2955, - "line_end": 2964, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2974, - "line_end": 2979, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2989, - "line_end": 2993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 3014, - "line_end": 3035, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 3029, - "line_end": 3032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 3060, - "line_end": 3211, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 3109, - "line_end": 3112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 3206, - "line_end": 3209, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 3250, - "line_end": 3293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 3420, - "line_end": 4135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3977, - "line_end": 3980, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3983, - "line_end": 3986, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 4015, - "line_end": 4019, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 4025, - "line_end": 4029, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4039, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 4046, - "line_end": 4051, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 4062, - "line_end": 4065, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 4071, - "line_end": 4074, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 4078, - "line_end": 4081, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 4094, - "line_end": 4103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4122, - "line_end": 4125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 4158, - "line_end": 4285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4162, - "line_end": 4165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4174, - "line_end": 4177, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4180, - "line_end": 4184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4187, - "line_end": 4190, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4193, - "line_end": 4194, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4240, - "line_end": 4244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4249, - "line_end": 4253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4259, - "line_end": 4263, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4270, - "line_end": 4274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4283, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 4286, - "line_end": 4518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4314, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 4316, - "line_end": 4319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 4321, - "line_end": 4324, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 4327, - "line_end": 4389, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4411, - "line_end": 4416, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4419, - "line_end": 4425, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 4439, - "line_end": 4440, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 4442, - "line_end": 4446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4455, - "line_end": 4459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 4462, - "line_end": 4464, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4473, - "line_end": 4477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4481, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4490, - "line_end": 4494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 4497, - "line_end": 4498, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4507, - "line_end": 4511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 4514, - "line_end": 4515, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 4519, - "line_end": 4546, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4569, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 4573, - "line_end": 4577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_65", - "name": "function_65", - "symbol_type": "Function", - "file_path": "", - "line_start": 4588, - "line_end": 4788, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4593, - "line_end": 4600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 4607, - "line_end": 4637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4640, - "line_end": 4647, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4650, - "line_end": 4657, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4666, - "line_end": 4674, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4677, - "line_end": 4680, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4683, - "line_end": 4686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4689, - "line_end": 4692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4697, - "line_end": 4702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4708, - "line_end": 4720, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4725, - "line_end": 4737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4740, - "line_end": 4747, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4750, - "line_end": 4753, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4756, - "line_end": 4764, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4794, - "line_end": 4809, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4819, - "line_end": 4830, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4833, - "line_end": 4837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4840, - "line_end": 4849, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4852, - "line_end": 4860, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4864, - "line_end": 4882, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4896, - "line_end": 4930, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 4933, - "line_end": 4936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4943, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4946, - "line_end": 4949, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4952, - "line_end": 4955, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4958, - "line_end": 4961, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4964, - "line_end": 4973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4978, - "line_end": 4993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4998, - "line_end": 5013, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5017, - "line_end": 5024, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_96", - "name": "function_96", - "symbol_type": "Function", - "file_path": "", - "line_start": 5030, - "line_end": 5035, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_97", - "name": "function_97", - "symbol_type": "Function", - "file_path": "", - "line_start": 5103, - "line_end": 5284, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 5108, - "line_end": 5113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5137, - "line_end": 5137, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5138, - "line_end": 5143, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5145, - "line_end": 5145, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_102", - "name": "function_102", - "symbol_type": "Function", - "file_path": "", - "line_start": 5146, - "line_end": 5146, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5148, - "line_end": 5150, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_104", - "name": "function_104", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5153, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_105", - "name": "function_105", - "symbol_type": "Function", - "file_path": "", - "line_start": 5154, - "line_end": 5154, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_106", - "name": "function_106", - "symbol_type": "Function", - "file_path": "", - "line_start": 5157, - "line_end": 5160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_107", - "name": "function_107", - "symbol_type": "Function", - "file_path": "", - "line_start": 5163, - "line_end": 5169, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_108", - "name": "function_108", - "symbol_type": "Function", - "file_path": "", - "line_start": 5171, - "line_end": 5177, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_109", - "name": "function_109", - "symbol_type": "Function", - "file_path": "", - "line_start": 5180, - "line_end": 5183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_110", - "name": "function_110", - "symbol_type": "Function", - "file_path": "", - "line_start": 5186, - "line_end": 5189, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_111", - "name": "function_111", - "symbol_type": "Function", - "file_path": "", - "line_start": 5192, - "line_end": 5225, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_112", - "name": "function_112", - "symbol_type": "Function", - "file_path": "", - "line_start": 5228, - "line_end": 5231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5242, - "line_end": 5242, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5245, - "line_end": 5246, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5248, - "line_end": 5248, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_116", - "name": "function_116", - "symbol_type": "Function", - "file_path": "", - "line_start": 5249, - "line_end": 5249, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5250, - "line_end": 5250, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_118", - "name": "function_118", - "symbol_type": "Function", - "file_path": "", - "line_start": 5251, - "line_end": 5251, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_119", - "name": "function_119", - "symbol_type": "Function", - "file_path": "", - "line_start": 5252, - "line_end": 5252, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_120", - "name": "function_120", - "symbol_type": "Function", - "file_path": "", - "line_start": 5255, - "line_end": 5258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_121", - "name": "function_121", - "symbol_type": "Function", - "file_path": "", - "line_start": 5261, - "line_end": 5264, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5271, - "line_end": 5274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5279, - "line_end": 5282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 5285, - "line_end": 5315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_125", - "name": "function_125", - "symbol_type": "Function", - "file_path": "", - "line_start": 5333, - "line_end": 5737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5354, - "line_end": 5360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5367, - "line_end": 5373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5376, - "line_end": 5382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5387, - "line_end": 5393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5400, - "line_end": 5406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5409, - "line_end": 5415, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5422, - "line_end": 5428, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5435, - "line_end": 5441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5448, - "line_end": 5454, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5461, - "line_end": 5468, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5471, - "line_end": 5478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5483, - "line_end": 5493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5496, - "line_end": 5508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5512, - "line_end": 5524, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5531, - "line_end": 5538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5541, - "line_end": 5548, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5552, - "line_end": 5562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5571, - "line_end": 5574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5584, - "line_end": 5587, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5591, - "line_end": 5594, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5597, - "line_end": 5600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5604, - "line_end": 5607, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5611, - "line_end": 5614, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5618, - "line_end": 5621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5626, - "line_end": 5630, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5634, - "line_end": 5637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5647, - "line_end": 5650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5653, - "line_end": 5656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5660, - "line_end": 5663, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5666, - "line_end": 5669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5673, - "line_end": 5676, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5679, - "line_end": 5682, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5689, - "line_end": 5692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5695, - "line_end": 5698, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5703, - "line_end": 5706, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5709, - "line_end": 5712, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5715, - "line_end": 5718, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5722, - "line_end": 5725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5776, - "line_end": 5781, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5826, - "line_end": 5828, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5831, - "line_end": 5833, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5836, - "line_end": 5838, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5841, - "line_end": 5845, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5848, - "line_end": 5852, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 5854, - "line_end": 5858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 5860, - "line_end": 5863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5867, - "line_end": 5871, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5875, - "line_end": 5878, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5882, - "line_end": 5885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5889, - "line_end": 5893, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 5928, - "line_end": 6038, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 5933, - "line_end": 5937, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 5951, - "line_end": 6036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_179", - "name": "function_179", - "symbol_type": "Function", - "file_path": "", - "line_start": 6098, - "line_end": 6562, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6120, - "line_end": 6124, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6127, - "line_end": 6127, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6128, - "line_end": 6128, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 6133, - "line_end": 6136, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_184", - "name": "function_184", - "symbol_type": "Function", - "file_path": "", - "line_start": 6158, - "line_end": 6166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6168, - "line_end": 6170, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6173, - "line_end": 6173, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 6174, - "line_end": 6174, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_188", - "name": "function_188", - "symbol_type": "Function", - "file_path": "", - "line_start": 6175, - "line_end": 6175, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6177, - "line_end": 6182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_190", - "name": "function_190", - "symbol_type": "Function", - "file_path": "", - "line_start": 6187, - "line_end": 6196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6213, - "line_end": 6215, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_192", - "name": "function_192", - "symbol_type": "Function", - "file_path": "", - "line_start": 6217, - "line_end": 6227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_193", - "name": "function_193", - "symbol_type": "Function", - "file_path": "", - "line_start": 6236, - "line_end": 6239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_194", - "name": "function_194", - "symbol_type": "Function", - "file_path": "", - "line_start": 6250, - "line_end": 6301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_195", - "name": "function_195", - "symbol_type": "Function", - "file_path": "", - "line_start": 6308, - "line_end": 6363, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6373, - "line_end": 6374, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_197", - "name": "function_197", - "symbol_type": "Function", - "file_path": "", - "line_start": 6376, - "line_end": 6391, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6397, - "line_end": 6400, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_199", - "name": "function_199", - "symbol_type": "Function", - "file_path": "", - "line_start": 6419, - "line_end": 6422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_200", - "name": "function_200", - "symbol_type": "Function", - "file_path": "", - "line_start": 6443, - "line_end": 6446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6451, - "line_end": 6455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_202", - "name": "function_202", - "symbol_type": "Function", - "file_path": "", - "line_start": 6476, - "line_end": 6479, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6485, - "line_end": 6488, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6492, - "line_end": 6495, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6497, - "line_end": 6500, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6502, - "line_end": 6505, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6518, - "line_end": 6523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6526, - "line_end": 6529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6543, - "line_end": 6544, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6550, - "line_end": 6551, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_211", - "name": "function_211", - "symbol_type": "Function", - "file_path": "", - "line_start": 6553, - "line_end": 6556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6744, - "line_end": 6746, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6749, - "line_end": 6749, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6750, - "line_end": 6750, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_215", - "name": "function_215", - "symbol_type": "Function", - "file_path": "", - "line_start": 6753, - "line_end": 6753, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 6755, - "line_end": 6759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 6761, - "line_end": 6765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6767, - "line_end": 6771, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 6773, - "line_end": 6777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 6779, - "line_end": 6783, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 6785, - "line_end": 6789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 6791, - "line_end": 6795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6797, - "line_end": 6807, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 6809, - "line_end": 6817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6819, - "line_end": 6827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6829, - "line_end": 6839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6841, - "line_end": 6849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 6852, - "line_end": 6862, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 6864, - "line_end": 6867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6924, - "line_end": 6930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6933, - "line_end": 6933, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6934, - "line_end": 6934, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_233", - "name": "function_233", - "symbol_type": "Function", - "file_path": "", - "line_start": 6935, - "line_end": 6935, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 6936, - "line_end": 6936, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 6937, - "line_end": 6937, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 6939, - "line_end": 6943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 6945, - "line_end": 6949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 6951, - "line_end": 6955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 6957, - "line_end": 6961, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 6963, - "line_end": 6967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_241", - "name": "function_241", - "symbol_type": "Function", - "file_path": "", - "line_start": 6969, - "line_end": 6973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_242", - "name": "function_242", - "symbol_type": "Function", - "file_path": "", - "line_start": 6975, - "line_end": 6979, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_243", - "name": "function_243", - "symbol_type": "Function", - "file_path": "", - "line_start": 6981, - "line_end": 6997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_244", - "name": "function_244", - "symbol_type": "Function", - "file_path": "", - "line_start": 6999, - "line_end": 7014, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_245", - "name": "function_245", - "symbol_type": "Function", - "file_path": "", - "line_start": 7016, - "line_end": 7050, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_246", - "name": "function_246", - "symbol_type": "Function", - "file_path": "", - "line_start": 7052, - "line_end": 7067, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_247", - "name": "function_247", - "symbol_type": "Function", - "file_path": "", - "line_start": 7069, - "line_end": 7099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 7102, - "line_end": 7112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_249", - "name": "function_249", - "symbol_type": "Function", - "file_path": "", - "line_start": 7114, - "line_end": 7117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 7136, - "line_end": 7197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_251", - "name": "function_251", - "symbol_type": "Function", - "file_path": "", - "line_start": 7229, - "line_end": 7232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_252", - "name": "function_252", - "symbol_type": "Function", - "file_path": "", - "line_start": 7234, - "line_end": 7237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_253", - "name": "function_253", - "symbol_type": "Function", - "file_path": "", - "line_start": 7239, - "line_end": 7242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_254", - "name": "function_254", - "symbol_type": "Function", - "file_path": "", - "line_start": 7244, - "line_end": 7247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_255", - "name": "function_255", - "symbol_type": "Function", - "file_path": "", - "line_start": 7249, - "line_end": 7252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_256", - "name": "function_256", - "symbol_type": "Function", - "file_path": "", - "line_start": 7254, - "line_end": 7257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_257", - "name": "function_257", - "symbol_type": "Function", - "file_path": "", - "line_start": 7259, - "line_end": 7262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_258", - "name": "function_258", - "symbol_type": "Function", - "file_path": "", - "line_start": 7264, - "line_end": 7267, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_259", - "name": "function_259", - "symbol_type": "Function", - "file_path": "", - "line_start": 7269, - "line_end": 7272, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_260", - "name": "function_260", - "symbol_type": "Function", - "file_path": "", - "line_start": 7274, - "line_end": 7277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_261", - "name": "function_261", - "symbol_type": "Function", - "file_path": "", - "line_start": 7279, - "line_end": 7282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_262", - "name": "function_262", - "symbol_type": "Function", - "file_path": "", - "line_start": 7284, - "line_end": 7287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_263", - "name": "function_263", - "symbol_type": "Function", - "file_path": "", - "line_start": 7289, - "line_end": 7292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_264", - "name": "function_264", - "symbol_type": "Function", - "file_path": "", - "line_start": 7326, - "line_end": 8612, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_265", - "name": "function_265", - "symbol_type": "Function", - "file_path": "", - "line_start": 7363, - "line_end": 7404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7424, - "line_end": 7428, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7431, - "line_end": 7431, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7432, - "line_end": 7432, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_269", - "name": "function_269", - "symbol_type": "Function", - "file_path": "", - "line_start": 7433, - "line_end": 7433, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_270", - "name": "function_270", - "symbol_type": "Function", - "file_path": "", - "line_start": 7434, - "line_end": 7434, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_271", - "name": "function_271", - "symbol_type": "Function", - "file_path": "", - "line_start": 7435, - "line_end": 7435, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_272", - "name": "function_272", - "symbol_type": "Function", - "file_path": "", - "line_start": 7443, - "line_end": 7449, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_273", - "name": "function_273", - "symbol_type": "Function", - "file_path": "", - "line_start": 7470, - "line_end": 7501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_274", - "name": "function_274", - "symbol_type": "Function", - "file_path": "", - "line_start": 7518, - "line_end": 7538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_275", - "name": "function_275", - "symbol_type": "Function", - "file_path": "", - "line_start": 7555, - "line_end": 8139, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_276", - "name": "function_276", - "symbol_type": "Function", - "file_path": "", - "line_start": 8145, - "line_end": 8210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_277", - "name": "function_277", - "symbol_type": "Function", - "file_path": "", - "line_start": 8213, - "line_end": 8216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_278", - "name": "function_278", - "symbol_type": "Function", - "file_path": "", - "line_start": 8219, - "line_end": 8222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_279", - "name": "function_279", - "symbol_type": "Function", - "file_path": "", - "line_start": 8225, - "line_end": 8228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_280", - "name": "function_280", - "symbol_type": "Function", - "file_path": "", - "line_start": 8270, - "line_end": 8593, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 8621, - "line_end": 8626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 8638, - "line_end": 8665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 8675, - "line_end": 8699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 8702, - "line_end": 8705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_285", - "name": "function_285", - "symbol_type": "Function", - "file_path": "", - "line_start": 8713, - "line_end": 8716, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 8719, - "line_end": 8722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 8725, - "line_end": 8728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_288", - "name": "function_288", - "symbol_type": "Function", - "file_path": "", - "line_start": 8731, - "line_end": 8734, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 8741, - "line_end": 8744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 8749, - "line_end": 8770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_291", - "name": "function_291", - "symbol_type": "Function", - "file_path": "", - "line_start": 8773, - "line_end": 8777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 8787, - "line_end": 8799, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 8801, - "line_end": 8808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 8810, - "line_end": 8896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_295", - "name": "function_295", - "symbol_type": "Function", - "file_path": "", - "line_start": 8959, - "line_end": 9098, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_296", - "name": "function_296", - "symbol_type": "Function", - "file_path": "", - "line_start": 9099, - "line_end": 12083, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 9127, - "line_end": 9130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9158, - "line_end": 9161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9164, - "line_end": 9164, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9165, - "line_end": 9165, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_301", - "name": "function_301", - "symbol_type": "Function", - "file_path": "", - "line_start": 9166, - "line_end": 9166, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_302", - "name": "function_302", - "symbol_type": "Function", - "file_path": "", - "line_start": 9167, - "line_end": 9167, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_303", - "name": "function_303", - "symbol_type": "Function", - "file_path": "", - "line_start": 9168, - "line_end": 9168, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_304", - "name": "function_304", - "symbol_type": "Function", - "file_path": "", - "line_start": 9178, - "line_end": 9231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_305", - "name": "function_305", - "symbol_type": "Function", - "file_path": "", - "line_start": 9242, - "line_end": 9258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_306", - "name": "function_306", - "symbol_type": "Function", - "file_path": "", - "line_start": 9267, - "line_end": 9283, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 9297, - "line_end": 9307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 9319, - "line_end": 9334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_309", - "name": "function_309", - "symbol_type": "Function", - "file_path": "", - "line_start": 9346, - "line_end": 9412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_310", - "name": "function_310", - "symbol_type": "Function", - "file_path": "", - "line_start": 9426, - "line_end": 9458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_311", - "name": "function_311", - "symbol_type": "Function", - "file_path": "", - "line_start": 9464, - "line_end": 9480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_312", - "name": "function_312", - "symbol_type": "Function", - "file_path": "", - "line_start": 9494, - "line_end": 9972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_313", - "name": "function_313", - "symbol_type": "Function", - "file_path": "", - "line_start": 9985, - "line_end": 10068, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_314", - "name": "function_314", - "symbol_type": "Function", - "file_path": "", - "line_start": 10081, - "line_end": 10168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_315", - "name": "function_315", - "symbol_type": "Function", - "file_path": "", - "line_start": 10176, - "line_end": 10206, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_316", - "name": "function_316", - "symbol_type": "Function", - "file_path": "", - "line_start": 10214, - "line_end": 10261, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_317", - "name": "function_317", - "symbol_type": "Function", - "file_path": "", - "line_start": 10270, - "line_end": 10639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_318", - "name": "function_318", - "symbol_type": "Function", - "file_path": "", - "line_start": 10651, - "line_end": 10722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_319", - "name": "function_319", - "symbol_type": "Function", - "file_path": "", - "line_start": 10734, - "line_end": 10839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_320", - "name": "function_320", - "symbol_type": "Function", - "file_path": "", - "line_start": 10845, - "line_end": 10861, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_321", - "name": "function_321", - "symbol_type": "Function", - "file_path": "", - "line_start": 10867, - "line_end": 10891, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_322", - "name": "function_322", - "symbol_type": "Function", - "file_path": "", - "line_start": 10904, - "line_end": 10907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_323", - "name": "function_323", - "symbol_type": "Function", - "file_path": "", - "line_start": 10923, - "line_end": 11012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_324", - "name": "function_324", - "symbol_type": "Function", - "file_path": "", - "line_start": 11018, - "line_end": 11070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_325", - "name": "function_325", - "symbol_type": "Function", - "file_path": "", - "line_start": 11083, - "line_end": 11293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_326", - "name": "function_326", - "symbol_type": "Function", - "file_path": "", - "line_start": 11306, - "line_end": 11367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_327", - "name": "function_327", - "symbol_type": "Function", - "file_path": "", - "line_start": 11373, - "line_end": 11551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_328", - "name": "function_328", - "symbol_type": "Function", - "file_path": "", - "line_start": 11556, - "line_end": 11659, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_329", - "name": "function_329", - "symbol_type": "Function", - "file_path": "", - "line_start": 11664, - "line_end": 11742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_330", - "name": "function_330", - "symbol_type": "Function", - "file_path": "", - "line_start": 11747, - "line_end": 11811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_331", - "name": "function_331", - "symbol_type": "Function", - "file_path": "", - "line_start": 11826, - "line_end": 11830, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_332", - "name": "function_332", - "symbol_type": "Function", - "file_path": "", - "line_start": 11835, - "line_end": 11844, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 11862, - "line_end": 11888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 11905, - "line_end": 11921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 11938, - "line_end": 11954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_336", - "name": "function_336", - "symbol_type": "Function", - "file_path": "", - "line_start": 11961, - "line_end": 11970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_337", - "name": "function_337", - "symbol_type": "Function", - "file_path": "", - "line_start": 11975, - "line_end": 11980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_338", - "name": "function_338", - "symbol_type": "Function", - "file_path": "", - "line_start": 11988, - "line_end": 12022, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_339", - "name": "function_339", - "symbol_type": "Function", - "file_path": "", - "line_start": 12125, - "line_end": 12604, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 12169, - "line_end": 12179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_341", - "name": "function_341", - "symbol_type": "Function", - "file_path": "", - "line_start": 12191, - "line_end": 12243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_342", - "name": "function_342", - "symbol_type": "Function", - "file_path": "", - "line_start": 12251, - "line_end": 12255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_343", - "name": "function_343", - "symbol_type": "Function", - "file_path": "", - "line_start": 12258, - "line_end": 12273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_344", - "name": "function_344", - "symbol_type": "Function", - "file_path": "", - "line_start": 12277, - "line_end": 12556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_345", - "name": "function_345", - "symbol_type": "Function", - "file_path": "", - "line_start": 12559, - "line_end": 12562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_346", - "name": "function_346", - "symbol_type": "Function", - "file_path": "", - "line_start": 12564, - "line_end": 12591, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_347", - "name": "function_347", - "symbol_type": "Function", - "file_path": "", - "line_start": 12637, - "line_end": 12752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_348", - "name": "function_348", - "symbol_type": "Function", - "file_path": "", - "line_start": 12662, - "line_end": 12665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_349", - "name": "function_349", - "symbol_type": "Function", - "file_path": "", - "line_start": 12668, - "line_end": 12671, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_350", - "name": "function_350", - "symbol_type": "Function", - "file_path": "", - "line_start": 12674, - "line_end": 12677, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_351", - "name": "function_351", - "symbol_type": "Function", - "file_path": "", - "line_start": 12680, - "line_end": 12683, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_352", - "name": "function_352", - "symbol_type": "Function", - "file_path": "", - "line_start": 12686, - "line_end": 12689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_353", - "name": "function_353", - "symbol_type": "Function", - "file_path": "", - "line_start": 12691, - "line_end": 12694, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_354", - "name": "function_354", - "symbol_type": "Function", - "file_path": "", - "line_start": 12696, - "line_end": 12699, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_355", - "name": "function_355", - "symbol_type": "Function", - "file_path": "", - "line_start": 12701, - "line_end": 12706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_356", - "name": "function_356", - "symbol_type": "Function", - "file_path": "", - "line_start": 12708, - "line_end": 12711, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_357", - "name": "function_357", - "symbol_type": "Function", - "file_path": "", - "line_start": 12713, - "line_end": 12717, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_358", - "name": "function_358", - "symbol_type": "Function", - "file_path": "", - "line_start": 12719, - "line_end": 12724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_359", - "name": "function_359", - "symbol_type": "Function", - "file_path": "", - "line_start": 12726, - "line_end": 12730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_360", - "name": "function_360", - "symbol_type": "Function", - "file_path": "", - "line_start": 12732, - "line_end": 12737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_361", - "name": "function_361", - "symbol_type": "Function", - "file_path": "", - "line_start": 12739, - "line_end": 12743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_362", - "name": "function_362", - "symbol_type": "Function", - "file_path": "", - "line_start": 12745, - "line_end": 12749, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_363", - "name": "function_363", - "symbol_type": "Function", - "file_path": "", - "line_start": 12753, - "line_end": 12776, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_364", - "name": "function_364", - "symbol_type": "Function", - "file_path": "", - "line_start": 12808, - "line_end": 13104, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 12833, - "line_end": 13059, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12875, - "line_end": 12875, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_367", - "name": "function_367", - "symbol_type": "Function", - "file_path": "", - "line_start": 12876, - "line_end": 12876, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12877, - "line_end": 12877, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_369", - "name": "function_369", - "symbol_type": "Function", - "file_path": "", - "line_start": 12878, - "line_end": 12878, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12886, - "line_end": 12918, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12936, - "line_end": 12938, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_372", - "name": "function_372", - "symbol_type": "Function", - "file_path": "", - "line_start": 12946, - "line_end": 12954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12961, - "line_end": 12963, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_374", - "name": "function_374", - "symbol_type": "Function", - "file_path": "", - "line_start": 12971, - "line_end": 12976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_375", - "name": "function_375", - "symbol_type": "Function", - "file_path": "", - "line_start": 12987, - "line_end": 13020, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_376", - "name": "function_376", - "symbol_type": "Function", - "file_path": "", - "line_start": 13110, - "line_end": 13146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_377", - "name": "function_377", - "symbol_type": "Function", - "file_path": "", - "line_start": 13152, - "line_end": 13157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_378", - "name": "function_378", - "symbol_type": "Function", - "file_path": "", - "line_start": 13163, - "line_end": 13197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_379", - "name": "function_379", - "symbol_type": "Function", - "file_path": "", - "line_start": 13203, - "line_end": 13208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_380", - "name": "function_380", - "symbol_type": "Function", - "file_path": "", - "line_start": 13214, - "line_end": 13248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_381", - "name": "function_381", - "symbol_type": "Function", - "file_path": "", - "line_start": 13255, - "line_end": 13284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_382", - "name": "function_382", - "symbol_type": "Function", - "file_path": "", - "line_start": 13291, - "line_end": 13294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_383", - "name": "function_383", - "symbol_type": "Function", - "file_path": "", - "line_start": 13300, - "line_end": 13329, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_384", - "name": "function_384", - "symbol_type": "Function", - "file_path": "", - "line_start": 13335, - "line_end": 13338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_385", - "name": "function_385", - "symbol_type": "Function", - "file_path": "", - "line_start": 13344, - "line_end": 13347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_386", - "name": "function_386", - "symbol_type": "Function", - "file_path": "", - "line_start": 13353, - "line_end": 13356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_387", - "name": "function_387", - "symbol_type": "Function", - "file_path": "", - "line_start": 13362, - "line_end": 13393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_388", - "name": "function_388", - "symbol_type": "Function", - "file_path": "", - "line_start": 13399, - "line_end": 13402, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_389", - "name": "function_389", - "symbol_type": "Function", - "file_path": "", - "line_start": 13408, - "line_end": 13413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_390", - "name": "function_390", - "symbol_type": "Function", - "file_path": "", - "line_start": 13419, - "line_end": 13424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_391", - "name": "function_391", - "symbol_type": "Function", - "file_path": "", - "line_start": 13430, - "line_end": 13435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_392", - "name": "function_392", - "symbol_type": "Function", - "file_path": "", - "line_start": 13441, - "line_end": 13464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_393", - "name": "function_393", - "symbol_type": "Function", - "file_path": "", - "line_start": 13470, - "line_end": 13502, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_394", - "name": "function_394", - "symbol_type": "Function", - "file_path": "", - "line_start": 13508, - "line_end": 13518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 13524, - "line_end": 13527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_396", - "name": "function_396", - "symbol_type": "Function", - "file_path": "", - "line_start": 13559, - "line_end": 13671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13596, - "line_end": 13597, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13600, - "line_end": 13600, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_399", - "name": "function_399", - "symbol_type": "Function", - "file_path": "", - "line_start": 13603, - "line_end": 13606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_400", - "name": "function_400", - "symbol_type": "Function", - "file_path": "", - "line_start": 13609, - "line_end": 13612, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_401", - "name": "function_401", - "symbol_type": "Function", - "file_path": "", - "line_start": 13615, - "line_end": 13618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_402", - "name": "function_402", - "symbol_type": "Function", - "file_path": "", - "line_start": 13621, - "line_end": 13624, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_403", - "name": "function_403", - "symbol_type": "Function", - "file_path": "", - "line_start": 13627, - "line_end": 13630, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_404", - "name": "function_404", - "symbol_type": "Function", - "file_path": "", - "line_start": 13633, - "line_end": 13636, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_405", - "name": "function_405", - "symbol_type": "Function", - "file_path": "", - "line_start": 13639, - "line_end": 13642, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_406", - "name": "function_406", - "symbol_type": "Function", - "file_path": "", - "line_start": 13645, - "line_end": 13648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_407", - "name": "function_407", - "symbol_type": "Function", - "file_path": "", - "line_start": 13651, - "line_end": 13654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_408", - "name": "function_408", - "symbol_type": "Function", - "file_path": "", - "line_start": 13657, - "line_end": 13661, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_409", - "name": "function_409", - "symbol_type": "Function", - "file_path": "", - "line_start": 13664, - "line_end": 13668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_410", - "name": "function_410", - "symbol_type": "Function", - "file_path": "", - "line_start": 13711, - "line_end": 13729, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_411", - "name": "function_411", - "symbol_type": "Function", - "file_path": "", - "line_start": 13731, - "line_end": 13735, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13743, - "line_end": 13745, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 13749, - "line_end": 13757, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_414", - "name": "function_414", - "symbol_type": "Function", - "file_path": "", - "line_start": 13762, - "line_end": 13765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_415", - "name": "function_415", - "symbol_type": "Function", - "file_path": "", - "line_start": 13770, - "line_end": 13774, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_416", - "name": "function_416", - "symbol_type": "Function", - "file_path": "", - "line_start": 13779, - "line_end": 13785, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_417", - "name": "function_417", - "symbol_type": "Function", - "file_path": "", - "line_start": 13789, - "line_end": 13793, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_418", - "name": "function_418", - "symbol_type": "Function", - "file_path": "", - "line_start": 13797, - "line_end": 13800, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_419", - "name": "function_419", - "symbol_type": "Function", - "file_path": "", - "line_start": 13804, - "line_end": 13808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_420", - "name": "function_420", - "symbol_type": "Function", - "file_path": "", - "line_start": 13812, - "line_end": 13815, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_421", - "name": "function_421", - "symbol_type": "Function", - "file_path": "", - "line_start": 13819, - "line_end": 13822, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13826, - "line_end": 13836, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13840, - "line_end": 13848, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_424", - "name": "function_424", - "symbol_type": "Function", - "file_path": "", - "line_start": 13852, - "line_end": 13860, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13864, - "line_end": 13867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13871, - "line_end": 13874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 13878, - "line_end": 13881, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_428", - "name": "function_428", - "symbol_type": "Function", - "file_path": "", - "line_start": 13955, - "line_end": 14013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_429", - "name": "function_429", - "symbol_type": "Function", - "file_path": "", - "line_start": 14035, - "line_end": 14094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_430", - "name": "function_430", - "symbol_type": "Function", - "file_path": "", - "line_start": 14103, - "line_end": 14145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_431", - "name": "function_431", - "symbol_type": "Function", - "file_path": "", - "line_start": 14161, - "line_end": 14201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_432", - "name": "function_432", - "symbol_type": "Function", - "file_path": "", - "line_start": 14210, - "line_end": 14252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 14259, - "line_end": 14336, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 14347, - "line_end": 14405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_435", - "name": "function_435", - "symbol_type": "Function", - "file_path": "", - "line_start": 14535, - "line_end": 14538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_436", - "name": "function_436", - "symbol_type": "Function", - "file_path": "", - "line_start": 14543, - "line_end": 14546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_437", - "name": "function_437", - "symbol_type": "Function", - "file_path": "", - "line_start": 14550, - "line_end": 14553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_438", - "name": "function_438", - "symbol_type": "Function", - "file_path": "", - "line_start": 14612, - "line_end": 14616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_439", - "name": "function_439", - "symbol_type": "Function", - "file_path": "", - "line_start": 14621, - "line_end": 14625, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_440", - "name": "function_440", - "symbol_type": "Function", - "file_path": "", - "line_start": 14630, - "line_end": 14634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_441", - "name": "function_441", - "symbol_type": "Function", - "file_path": "", - "line_start": 14637, - "line_end": 14641, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_442", - "name": "function_442", - "symbol_type": "Function", - "file_path": "", - "line_start": 14646, - "line_end": 14650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_443", - "name": "function_443", - "symbol_type": "Function", - "file_path": "", - "line_start": 14655, - "line_end": 14659, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_444", - "name": "function_444", - "symbol_type": "Function", - "file_path": "", - "line_start": 14662, - "line_end": 14666, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_445", - "name": "function_445", - "symbol_type": "Function", - "file_path": "", - "line_start": 14690, - "line_end": 14750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14700, - "line_end": 14702, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14704, - "line_end": 14706, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14708, - "line_end": 14710, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14715, - "line_end": 14717, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14720, - "line_end": 14720, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14721, - "line_end": 14721, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_452", - "name": "function_452", - "symbol_type": "Function", - "file_path": "", - "line_start": 14722, - "line_end": 14722, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_453", - "name": "function_453", - "symbol_type": "Function", - "file_path": "", - "line_start": 14723, - "line_end": 14723, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_454", - "name": "function_454", - "symbol_type": "Function", - "file_path": "", - "line_start": 14724, - "line_end": 14724, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_455", - "name": "function_455", - "symbol_type": "Function", - "file_path": "", - "line_start": 14726, - "line_end": 14733, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_456", - "name": "function_456", - "symbol_type": "Function", - "file_path": "", - "line_start": 14735, - "line_end": 14738, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_457", - "name": "function_457", - "symbol_type": "Function", - "file_path": "", - "line_start": 14740, - "line_end": 14743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_458", - "name": "function_458", - "symbol_type": "Function", - "file_path": "", - "line_start": 14815, - "line_end": 14936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_459", - "name": "function_459", - "symbol_type": "Function", - "file_path": "", - "line_start": 14824, - "line_end": 14824, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14826, - "line_end": 14826, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14827, - "line_end": 14827, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14828, - "line_end": 14828, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_463", - "name": "function_463", - "symbol_type": "Function", - "file_path": "", - "line_start": 14829, - "line_end": 14829, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_464", - "name": "function_464", - "symbol_type": "Function", - "file_path": "", - "line_start": 14830, - "line_end": 14830, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14842, - "line_end": 14844, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_466", - "name": "function_466", - "symbol_type": "Function", - "file_path": "", - "line_start": 14846, - "line_end": 14849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_467", - "name": "function_467", - "symbol_type": "Function", - "file_path": "", - "line_start": 14851, - "line_end": 14855, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14867, - "line_end": 14869, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_469", - "name": "function_469", - "symbol_type": "Function", - "file_path": "", - "line_start": 14871, - "line_end": 14874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_470", - "name": "function_470", - "symbol_type": "Function", - "file_path": "", - "line_start": 14876, - "line_end": 14880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14892, - "line_end": 14894, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_472", - "name": "function_472", - "symbol_type": "Function", - "file_path": "", - "line_start": 14896, - "line_end": 14899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_473", - "name": "function_473", - "symbol_type": "Function", - "file_path": "", - "line_start": 14901, - "line_end": 14905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14916, - "line_end": 14917, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14920, - "line_end": 14921, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14924, - "line_end": 14925, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_477", - "name": "function_477", - "symbol_type": "Function", - "file_path": "", - "line_start": 14927, - "line_end": 14930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_478", - "name": "function_478", - "symbol_type": "Function", - "file_path": "", - "line_start": 14937, - "line_end": 16752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 14966, - "line_end": 14969, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_480", - "name": "function_480", - "symbol_type": "Function", - "file_path": "", - "line_start": 14975, - "line_end": 14999, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_481", - "name": "function_481", - "symbol_type": "Function", - "file_path": "", - "line_start": 15004, - "line_end": 15323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_482", - "name": "function_482", - "symbol_type": "Function", - "file_path": "", - "line_start": 15328, - "line_end": 15645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_483", - "name": "function_483", - "symbol_type": "Function", - "file_path": "", - "line_start": 15654, - "line_end": 15864, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_484", - "name": "function_484", - "symbol_type": "Function", - "file_path": "", - "line_start": 15875, - "line_end": 15885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_485", - "name": "function_485", - "symbol_type": "Function", - "file_path": "", - "line_start": 15890, - "line_end": 15897, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_486", - "name": "function_486", - "symbol_type": "Function", - "file_path": "", - "line_start": 15902, - "line_end": 15907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_487", - "name": "function_487", - "symbol_type": "Function", - "file_path": "", - "line_start": 15912, - "line_end": 15917, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_488", - "name": "function_488", - "symbol_type": "Function", - "file_path": "", - "line_start": 15922, - "line_end": 15925, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_489", - "name": "function_489", - "symbol_type": "Function", - "file_path": "", - "line_start": 15930, - "line_end": 15939, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_490", - "name": "function_490", - "symbol_type": "Function", - "file_path": "", - "line_start": 15944, - "line_end": 15947, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_491", - "name": "function_491", - "symbol_type": "Function", - "file_path": "", - "line_start": 15952, - "line_end": 15957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_492", - "name": "function_492", - "symbol_type": "Function", - "file_path": "", - "line_start": 15962, - "line_end": 15975, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_493", - "name": "function_493", - "symbol_type": "Function", - "file_path": "", - "line_start": 15980, - "line_end": 15985, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_494", - "name": "function_494", - "symbol_type": "Function", - "file_path": "", - "line_start": 15990, - "line_end": 16007, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_495", - "name": "function_495", - "symbol_type": "Function", - "file_path": "", - "line_start": 16012, - "line_end": 16017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_496", - "name": "function_496", - "symbol_type": "Function", - "file_path": "", - "line_start": 16022, - "line_end": 16032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_497", - "name": "function_497", - "symbol_type": "Function", - "file_path": "", - "line_start": 16037, - "line_end": 16040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_498", - "name": "function_498", - "symbol_type": "Function", - "file_path": "", - "line_start": 16045, - "line_end": 16059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_499", - "name": "function_499", - "symbol_type": "Function", - "file_path": "", - "line_start": 16064, - "line_end": 16073, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_500", - "name": "function_500", - "symbol_type": "Function", - "file_path": "", - "line_start": 16079, - "line_end": 16119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_501", - "name": "function_501", - "symbol_type": "Function", - "file_path": "", - "line_start": 16127, - "line_end": 16166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_502", - "name": "function_502", - "symbol_type": "Function", - "file_path": "", - "line_start": 16174, - "line_end": 16183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_503", - "name": "function_503", - "symbol_type": "Function", - "file_path": "", - "line_start": 16189, - "line_end": 16199, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_504", - "name": "function_504", - "symbol_type": "Function", - "file_path": "", - "line_start": 16205, - "line_end": 16208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_505", - "name": "function_505", - "symbol_type": "Function", - "file_path": "", - "line_start": 16210, - "line_end": 16213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_506", - "name": "function_506", - "symbol_type": "Function", - "file_path": "", - "line_start": 16219, - "line_end": 16222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_507", - "name": "function_507", - "symbol_type": "Function", - "file_path": "", - "line_start": 16224, - "line_end": 16227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16236, - "line_end": 16245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16250, - "line_end": 16332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16338, - "line_end": 16414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_511", - "name": "function_511", - "symbol_type": "Function", - "file_path": "", - "line_start": 16419, - "line_end": 16518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_512", - "name": "function_512", - "symbol_type": "Function", - "file_path": "", - "line_start": 16520, - "line_end": 16523, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_513", - "name": "function_513", - "symbol_type": "Function", - "file_path": "", - "line_start": 16525, - "line_end": 16528, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_514", - "name": "function_514", - "symbol_type": "Function", - "file_path": "", - "line_start": 16533, - "line_end": 16640, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 16660, - "line_end": 16674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_516", - "name": "function_516", - "symbol_type": "Function", - "file_path": "", - "line_start": 16676, - "line_end": 16701, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16710, - "line_end": 16713, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16717, - "line_end": 16724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16728, - "line_end": 16731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16739, - "line_end": 16742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_521", - "name": "function_521", - "symbol_type": "Function", - "file_path": "", - "line_start": 16804, - "line_end": 17898, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 16831, - "line_end": 16838, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 16847, - "line_end": 16847, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_524", - "name": "function_524", - "symbol_type": "Function", - "file_path": "", - "line_start": 16853, - "line_end": 16859, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_525", - "name": "function_525", - "symbol_type": "Function", - "file_path": "", - "line_start": 16865, - "line_end": 16924, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_526", - "name": "function_526", - "symbol_type": "Function", - "file_path": "", - "line_start": 16930, - "line_end": 16941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_527", - "name": "function_527", - "symbol_type": "Function", - "file_path": "", - "line_start": 16947, - "line_end": 16955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 16972, - "line_end": 17037, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 17111, - "line_end": 17269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 17275, - "line_end": 17327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 17329, - "line_end": 17364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 17370, - "line_end": 17603, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17611, - "line_end": 17662, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_534", - "name": "function_534", - "symbol_type": "Function", - "file_path": "", - "line_start": 17670, - "line_end": 17702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_535", - "name": "function_535", - "symbol_type": "Function", - "file_path": "", - "line_start": 17710, - "line_end": 17750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_536", - "name": "function_536", - "symbol_type": "Function", - "file_path": "", - "line_start": 17762, - "line_end": 17831, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_537", - "name": "function_537", - "symbol_type": "Function", - "file_path": "", - "line_start": 17901, - "line_end": 18554, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17951, - "line_end": 17960, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17963, - "line_end": 17963, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_540", - "name": "function_540", - "symbol_type": "Function", - "file_path": "", - "line_start": 17964, - "line_end": 17964, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17965, - "line_end": 17965, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_542", - "name": "function_542", - "symbol_type": "Function", - "file_path": "", - "line_start": 17966, - "line_end": 17966, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_543", - "name": "function_543", - "symbol_type": "Function", - "file_path": "", - "line_start": 17967, - "line_end": 17967, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_544", - "name": "function_544", - "symbol_type": "Function", - "file_path": "", - "line_start": 17991, - "line_end": 18258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 18289, - "line_end": 18470, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 18561, - "line_end": 18568, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18572, - "line_end": 18575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18578, - "line_end": 18581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18598, - "line_end": 18673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18683, - "line_end": 18702, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18704, - "line_end": 18710, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18712, - "line_end": 18761, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 18784, - "line_end": 18817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18824, - "line_end": 18828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18839, - "line_end": 18843, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18926, - "line_end": 18926, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18927, - "line_end": 18927, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18929, - "line_end": 18930, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18931, - "line_end": 18932, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18934, - "line_end": 18945, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18949, - "line_end": 18960, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_562", - "name": "function_562", - "symbol_type": "Function", - "file_path": "", - "line_start": 18962, - "line_end": 18965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_563", - "name": "function_563", - "symbol_type": "Function", - "file_path": "", - "line_start": 18969, - "line_end": 18972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_564", - "name": "function_564", - "symbol_type": "Function", - "file_path": "", - "line_start": 18974, - "line_end": 18977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_565", - "name": "function_565", - "symbol_type": "Function", - "file_path": "", - "line_start": 18981, - "line_end": 18984, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_566", - "name": "function_566", - "symbol_type": "Function", - "file_path": "", - "line_start": 18986, - "line_end": 18997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_567", - "name": "function_567", - "symbol_type": "Function", - "file_path": "", - "line_start": 19001, - "line_end": 19012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_568", - "name": "function_568", - "symbol_type": "Function", - "file_path": "", - "line_start": 19014, - "line_end": 19025, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_569", - "name": "function_569", - "symbol_type": "Function", - "file_path": "", - "line_start": 19029, - "line_end": 19040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19042, - "line_end": 19059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19063, - "line_end": 19080, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19082, - "line_end": 19085, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19087, - "line_end": 19138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19140, - "line_end": 19150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19154, - "line_end": 19164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19166, - "line_end": 19176, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19180, - "line_end": 19190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19192, - "line_end": 19202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19204, - "line_end": 19207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19209, - "line_end": 19220, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19227, - "line_end": 19233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_582", - "name": "function_582", - "symbol_type": "Function", - "file_path": "", - "line_start": 19252, - "line_end": 19829, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 19306, - "line_end": 19315, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 19416, - "line_end": 19419, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 19423, - "line_end": 19485, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_586", - "name": "function_586", - "symbol_type": "Function", - "file_path": "", - "line_start": 19551, - "line_end": 19569, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19621, - "line_end": 19621, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19623, - "line_end": 19623, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19625, - "line_end": 19625, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19627, - "line_end": 19627, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19629, - "line_end": 19629, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19631, - "line_end": 19700, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19703, - "line_end": 19703, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19706, - "line_end": 19706, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19709, - "line_end": 19709, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19712, - "line_end": 19712, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19715, - "line_end": 19715, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19718, - "line_end": 19718, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19721, - "line_end": 19721, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19724, - "line_end": 19724, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19727, - "line_end": 19727, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19730, - "line_end": 19730, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 19732, - "line_end": 19828, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 19866, - "line_end": 19866, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19871, - "line_end": 19906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19908, - "line_end": 19919, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 19921, - "line_end": 19957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19983, - "line_end": 19987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19991, - "line_end": 19995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20003, - "line_end": 20010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20017, - "line_end": 20066, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20070, - "line_end": 20121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20125, - "line_end": 20132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20136, - "line_end": 20143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20147, - "line_end": 20154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20158, - "line_end": 20165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20169, - "line_end": 20173, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20177, - "line_end": 20181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20185, - "line_end": 20191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20198, - "line_end": 20298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20308, - "line_end": 20308, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20312, - "line_end": 20376, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20380, - "line_end": 20393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_624", - "name": "function_624", - "symbol_type": "Function", - "file_path": "", - "line_start": 20397, - "line_end": 20414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_625", - "name": "function_625", - "symbol_type": "Function", - "file_path": "", - "line_start": 20418, - "line_end": 20422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 20459, - "line_end": 20462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 20466, - "line_end": 20469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 20473, - "line_end": 20476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 20480, - "line_end": 20483, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 20487, - "line_end": 20490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 20494, - "line_end": 20497, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 20501, - "line_end": 20504, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 20508, - "line_end": 20511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 20515, - "line_end": 20518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20522, - "line_end": 20525, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20529, - "line_end": 20532, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 20536, - "line_end": 20539, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20543, - "line_end": 20546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 20550, - "line_end": 20553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_640", - "name": "function_640", - "symbol_type": "Function", - "file_path": "", - "line_start": 20557, - "line_end": 20560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21113, - "line_end": 21117, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21127, - "line_end": 21141, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21136, - "line_end": 21140, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21150, - "line_end": 21164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21170, - "line_end": 21184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21188, - "line_end": 21202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21208, - "line_end": 21222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_648", - "name": "function_648", - "symbol_type": "Function", - "file_path": "", - "line_start": 21226, - "line_end": 21268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_649", - "name": "function_649", - "symbol_type": "Function", - "file_path": "", - "line_start": 21272, - "line_end": 21281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_650", - "name": "function_650", - "symbol_type": "Function", - "file_path": "", - "line_start": 21285, - "line_end": 21303, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_651", - "name": "function_651", - "symbol_type": "Function", - "file_path": "", - "line_start": 21307, - "line_end": 21318, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_652", - "name": "function_652", - "symbol_type": "Function", - "file_path": "", - "line_start": 21323, - "line_end": 21326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_653", - "name": "function_653", - "symbol_type": "Function", - "file_path": "", - "line_start": 21329, - "line_end": 21332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_654", - "name": "function_654", - "symbol_type": "Function", - "file_path": "", - "line_start": 21338, - "line_end": 21356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_655", - "name": "function_655", - "symbol_type": "Function", - "file_path": "", - "line_start": 21362, - "line_end": 21373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21417, - "line_end": 21433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21443, - "line_end": 21459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21470, - "line_end": 21486, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21493, - "line_end": 21507, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21503, - "line_end": 21506, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21518, - "line_end": 21532, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21528, - "line_end": 21531, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21542, - "line_end": 21545, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21553, - "line_end": 21556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21560, - "line_end": 21563, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21567, - "line_end": 21570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21574, - "line_end": 21579, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21583, - "line_end": 21588, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21595, - "line_end": 21658, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21665, - "line_end": 21731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21733, - "line_end": 21745, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21749, - "line_end": 21764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21781, - "line_end": 21784, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21788, - "line_end": 21804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21818, - "line_end": 21828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21832, - "line_end": 21842, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21848, - "line_end": 21858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21864, - "line_end": 21874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21878, - "line_end": 21882, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21888, - "line_end": 21892, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21896, - "line_end": 21899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21905, - "line_end": 21908, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21912, - "line_end": 21915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21919, - "line_end": 21922, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21936, - "line_end": 21941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21945, - "line_end": 21948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21952, - "line_end": 21957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21961, - "line_end": 21966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21970, - "line_end": 21973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 21977, - "line_end": 21982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21986, - "line_end": 21989, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21993, - "line_end": 21996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22000, - "line_end": 22003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22007, - "line_end": 22010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22014, - "line_end": 22017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22021, - "line_end": 22024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22033, - "line_end": 22036, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22044, - "line_end": 22047, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22051, - "line_end": 22054, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22058, - "line_end": 22061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 22075, - "line_end": 22110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22114, - "line_end": 22149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22153, - "line_end": 22183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 22197, - "line_end": 22254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22258, - "line_end": 22279, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_706", - "name": "function_706", - "symbol_type": "Function", - "file_path": "", - "line_start": 22283, - "line_end": 22287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22291, - "line_end": 22311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_708", - "name": "function_708", - "symbol_type": "Function", - "file_path": "", - "line_start": 22315, - "line_end": 22319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22323, - "line_end": 22342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_710", - "name": "function_710", - "symbol_type": "Function", - "file_path": "", - "line_start": 22346, - "line_end": 22350, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22354, - "line_end": 22366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_712", - "name": "function_712", - "symbol_type": "Function", - "file_path": "", - "line_start": 22370, - "line_end": 22374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22379, - "line_end": 22399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 22404, - "line_end": 22430, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 22436, - "line_end": 22451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22455, - "line_end": 22471, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22475, - "line_end": 22478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22482, - "line_end": 22498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22502, - "line_end": 22529, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22533, - "line_end": 22549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22553, - "line_end": 22574, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22578, - "line_end": 22581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22585, - "line_end": 22628, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22632, - "line_end": 22645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22649, - "line_end": 22657, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22661, - "line_end": 22673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22677, - "line_end": 22689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22693, - "line_end": 22705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22709, - "line_end": 22721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22725, - "line_end": 22737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 22814, - "line_end": 22817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 22843, - "line_end": 22846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_733", - "name": "function_733", - "symbol_type": "Function", - "file_path": "", - "line_start": 22852, - "line_end": 22863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_734", - "name": "function_734", - "symbol_type": "Function", - "file_path": "", - "line_start": 22869, - "line_end": 22872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_735", - "name": "function_735", - "symbol_type": "Function", - "file_path": "", - "line_start": 22876, - "line_end": 22883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_736", - "name": "function_736", - "symbol_type": "Function", - "file_path": "", - "line_start": 22887, - "line_end": 22896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_737", - "name": "function_737", - "symbol_type": "Function", - "file_path": "", - "line_start": 22902, - "line_end": 22905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_738", - "name": "function_738", - "symbol_type": "Function", - "file_path": "", - "line_start": 22914, - "line_end": 22921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_739", - "name": "function_739", - "symbol_type": "Function", - "file_path": "", - "line_start": 22927, - "line_end": 22930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_740", - "name": "function_740", - "symbol_type": "Function", - "file_path": "", - "line_start": 22935, - "line_end": 22942, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_741", - "name": "function_741", - "symbol_type": "Function", - "file_path": "", - "line_start": 22948, - "line_end": 22951, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_742", - "name": "function_742", - "symbol_type": "Function", - "file_path": "", - "line_start": 22956, - "line_end": 22966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_743", - "name": "function_743", - "symbol_type": "Function", - "file_path": "", - "line_start": 22972, - "line_end": 22975, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_744", - "name": "function_744", - "symbol_type": "Function", - "file_path": "", - "line_start": 22981, - "line_end": 22984, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_745", - "name": "function_745", - "symbol_type": "Function", - "file_path": "", - "line_start": 22988, - "line_end": 22995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_746", - "name": "function_746", - "symbol_type": "Function", - "file_path": "", - "line_start": 23001, - "line_end": 23004, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_747", - "name": "function_747", - "symbol_type": "Function", - "file_path": "", - "line_start": 23010, - "line_end": 23013, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_748", - "name": "function_748", - "symbol_type": "Function", - "file_path": "", - "line_start": 23017, - "line_end": 24113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_749", - "name": "function_749", - "symbol_type": "Function", - "file_path": "", - "line_start": 23038, - "line_end": 23041, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_750", - "name": "function_750", - "symbol_type": "Function", - "file_path": "", - "line_start": 23045, - "line_end": 23052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_751", - "name": "function_751", - "symbol_type": "Function", - "file_path": "", - "line_start": 23058, - "line_end": 23061, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_752", - "name": "function_752", - "symbol_type": "Function", - "file_path": "", - "line_start": 23067, - "line_end": 23070, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_753", - "name": "function_753", - "symbol_type": "Function", - "file_path": "", - "line_start": 23074, - "line_end": 23082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_754", - "name": "function_754", - "symbol_type": "Function", - "file_path": "", - "line_start": 23088, - "line_end": 23091, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_755", - "name": "function_755", - "symbol_type": "Function", - "file_path": "", - "line_start": 23097, - "line_end": 23100, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_756", - "name": "function_756", - "symbol_type": "Function", - "file_path": "", - "line_start": 23104, - "line_end": 23111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_757", - "name": "function_757", - "symbol_type": "Function", - "file_path": "", - "line_start": 23117, - "line_end": 23120, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_758", - "name": "function_758", - "symbol_type": "Function", - "file_path": "", - "line_start": 23126, - "line_end": 23129, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_759", - "name": "function_759", - "symbol_type": "Function", - "file_path": "", - "line_start": 23145, - "line_end": 23158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23185, - "line_end": 23194, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23199, - "line_end": 23209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23213, - "line_end": 23221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23226, - "line_end": 23230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23235, - "line_end": 23239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23243, - "line_end": 23247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23253, - "line_end": 23262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23268, - "line_end": 23277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23287, - "line_end": 23298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_769", - "name": "function_769", - "symbol_type": "Function", - "file_path": "", - "line_start": 23328, - "line_end": 23353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23391, - "line_end": 23394, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23398, - "line_end": 23401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23405, - "line_end": 23410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23414, - "line_end": 23417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23421, - "line_end": 23424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23428, - "line_end": 23435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23439, - "line_end": 23443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23447, - "line_end": 23451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23455, - "line_end": 23462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23466, - "line_end": 23470, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23474, - "line_end": 23478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23482, - "line_end": 23487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23491, - "line_end": 23494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23498, - "line_end": 23501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23506, - "line_end": 23517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23522, - "line_end": 23533, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23538, - "line_end": 23544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23549, - "line_end": 23560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23565, - "line_end": 23575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23580, - "line_end": 23590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23595, - "line_end": 23600, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23604, - "line_end": 23614, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23619, - "line_end": 23629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23634, - "line_end": 23644, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23649, - "line_end": 23654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23658, - "line_end": 23668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23674, - "line_end": 23684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23689, - "line_end": 23699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23704, - "line_end": 23714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23719, - "line_end": 23729, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23734, - "line_end": 23739, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23743, - "line_end": 23753, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_802", - "name": "function_802", - "symbol_type": "Function", - "file_path": "", - "line_start": 23765, - "line_end": 23768, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_803", - "name": "function_803", - "symbol_type": "Function", - "file_path": "", - "line_start": 23772, - "line_end": 23775, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_804", - "name": "function_804", - "symbol_type": "Function", - "file_path": "", - "line_start": 23779, - "line_end": 23782, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_805", - "name": "function_805", - "symbol_type": "Function", - "file_path": "", - "line_start": 23786, - "line_end": 23789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23793, - "line_end": 23796, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23800, - "line_end": 23803, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23807, - "line_end": 23810, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23814, - "line_end": 23817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23821, - "line_end": 23826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23830, - "line_end": 23833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 23846, - "line_end": 24112, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24117, - "line_end": 24122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 24126, - "line_end": 24257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24269, - "line_end": 24293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_816", - "name": "function_816", - "symbol_type": "Function", - "file_path": "", - "line_start": 24300, - "line_end": 24304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_817", - "name": "function_817", - "symbol_type": "Function", - "file_path": "", - "line_start": 24314, - "line_end": 24317, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_818", - "name": "function_818", - "symbol_type": "Function", - "file_path": "", - "line_start": 24322, - "line_end": 24325, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_819", - "name": "function_819", - "symbol_type": "Function", - "file_path": "", - "line_start": 24329, - "line_end": 24383, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_820", - "name": "function_820", - "symbol_type": "Function", - "file_path": "", - "line_start": 24340, - "line_end": 24347, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_821", - "name": "function_821", - "symbol_type": "Function", - "file_path": "", - "line_start": 24343, - "line_end": 24346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_822", - "name": "function_822", - "symbol_type": "Function", - "file_path": "", - "line_start": 24357, - "line_end": 24365, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 24373, - "line_end": 24379, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 2798, - "line_end": 2798, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 3019, - "line_end": 3033, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 3106, - "line_end": 3113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 3127, - "line_end": 3127, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 3131, - "line_end": 3134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 3137, - "line_end": 3140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 3145, - "line_end": 3149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 3152, - "line_end": 3155, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 3190, - "line_end": 3190, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 3191, - "line_end": 3191, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 3195, - "line_end": 3198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 3255, - "line_end": 3255, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 3258, - "line_end": 3268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3273, - "line_end": 3275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 3278, - "line_end": 3281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 3284, - "line_end": 3291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 3398, - "line_end": 3398, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3409, - "line_end": 3409, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3445, - "line_end": 3445, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 3454, - "line_end": 3458, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3465, - "line_end": 3465, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3468, - "line_end": 3468, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 3471, - "line_end": 3471, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3509, - "line_end": 3509, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3516, - "line_end": 3519, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 3522, - "line_end": 3529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3534, - "line_end": 3534, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 3537, - "line_end": 3544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3549, - "line_end": 3549, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 3552, - "line_end": 3559, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 3565, - "line_end": 3565, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 3569, - "line_end": 3575, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 3585, - "line_end": 3585, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 3586, - "line_end": 3586, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 3588, - "line_end": 3589, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 3592, - "line_end": 3592, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3598, - "line_end": 3598, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 3601, - "line_end": 3602, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 3605, - "line_end": 3606, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 3609, - "line_end": 3610, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 3613, - "line_end": 3614, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3618, - "line_end": 3618, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 3621, - "line_end": 3621, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_48", - "name": "class_48", - "symbol_type": "Class", - "file_path": "", - "line_start": 3624, - "line_end": 3624, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 3627, - "line_end": 3627, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_50", - "name": "class_50", - "symbol_type": "Class", - "file_path": "", - "line_start": 3630, - "line_end": 3630, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3634, - "line_end": 3634, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 3637, - "line_end": 3649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 3652, - "line_end": 3668, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3681, - "line_end": 3681, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 3684, - "line_end": 3684, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3688, - "line_end": 3688, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 3691, - "line_end": 3704, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3707, - "line_end": 3708, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3712, - "line_end": 3712, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 3715, - "line_end": 3736, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3739, - "line_end": 3741, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3744, - "line_end": 3748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3751, - "line_end": 3765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3768, - "line_end": 3768, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_65", - "name": "class_65", - "symbol_type": "Class", - "file_path": "", - "line_start": 3771, - "line_end": 3783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3786, - "line_end": 3787, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3790, - "line_end": 3790, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 3793, - "line_end": 3797, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 3800, - "line_end": 3827, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3830, - "line_end": 3831, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3835, - "line_end": 3835, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 3838, - "line_end": 3853, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3856, - "line_end": 3858, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3861, - "line_end": 3861, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_75", - "name": "class_75", - "symbol_type": "Class", - "file_path": "", - "line_start": 3864, - "line_end": 3870, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3873, - "line_end": 3874, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 3877, - "line_end": 3877, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_78", - "name": "class_78", - "symbol_type": "Class", - "file_path": "", - "line_start": 3880, - "line_end": 3880, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3883, - "line_end": 3883, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_80", - "name": "class_80", - "symbol_type": "Class", - "file_path": "", - "line_start": 3886, - "line_end": 3886, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_81", - "name": "class_81", - "symbol_type": "Class", - "file_path": "", - "line_start": 3889, - "line_end": 3890, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3894, - "line_end": 3894, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_83", - "name": "class_83", - "symbol_type": "Class", - "file_path": "", - "line_start": 3897, - "line_end": 3897, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3904, - "line_end": 3904, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_85", - "name": "class_85", - "symbol_type": "Class", - "file_path": "", - "line_start": 3907, - "line_end": 3910, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3960, - "line_end": 3973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 3964, - "line_end": 3967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 4010, - "line_end": 4010, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_89", - "name": "class_89", - "symbol_type": "Class", - "file_path": "", - "line_start": 4013, - "line_end": 4020, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_90", - "name": "class_90", - "symbol_type": "Class", - "file_path": "", - "line_start": 4023, - "line_end": 4030, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_91", - "name": "class_91", - "symbol_type": "Class", - "file_path": "", - "line_start": 4033, - "line_end": 4040, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_92", - "name": "class_92", - "symbol_type": "Class", - "file_path": "", - "line_start": 4044, - "line_end": 4052, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 4057, - "line_end": 4057, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_94", - "name": "class_94", - "symbol_type": "Class", - "file_path": "", - "line_start": 4060, - "line_end": 4066, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_95", - "name": "class_95", - "symbol_type": "Class", - "file_path": "", - "line_start": 4069, - "line_end": 4075, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 4109, - "line_end": 4109, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 4131, - "line_end": 4131, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exception", - "name": "exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 4300, - "line_end": 4394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4398, - "line_end": 4447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 4451, - "line_end": 4465, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4469, - "line_end": 4482, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 4486, - "line_end": 4499, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4503, - "line_end": 4516, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 4544, - "line_end": 4544, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5027, - "line_end": 5036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 5114, - "line_end": 5232, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 5235, - "line_end": 5265, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_108", - "name": "class_108", - "symbol_type": "Class", - "file_path": "", - "line_start": 5300, - "line_end": 5301, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_109", - "name": "class_109", - "symbol_type": "Class", - "file_path": "", - "line_start": 5304, - "line_end": 5310, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 5348, - "line_end": 5348, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_111", - "name": "class_111", - "symbol_type": "Class", - "file_path": "", - "line_start": 5351, - "line_end": 5361, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_112", - "name": "class_112", - "symbol_type": "Class", - "file_path": "", - "line_start": 5364, - "line_end": 5394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_113", - "name": "class_113", - "symbol_type": "Class", - "file_path": "", - "line_start": 5397, - "line_end": 5416, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_114", - "name": "class_114", - "symbol_type": "Class", - "file_path": "", - "line_start": 5419, - "line_end": 5429, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_115", - "name": "class_115", - "symbol_type": "Class", - "file_path": "", - "line_start": 5432, - "line_end": 5442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_116", - "name": "class_116", - "symbol_type": "Class", - "file_path": "", - "line_start": 5445, - "line_end": 5455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_117", - "name": "class_117", - "symbol_type": "Class", - "file_path": "", - "line_start": 5458, - "line_end": 5525, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_118", - "name": "class_118", - "symbol_type": "Class", - "file_path": "", - "line_start": 5528, - "line_end": 5563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5728, - "line_end": 5735, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_adl_serializer", - "name": "adl_serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 5761, - "line_end": 5791, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6153, - "line_end": 6202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6208, - "line_end": 6240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 6244, - "line_end": 6244, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_124", - "name": "class_124", - "symbol_type": "Class", - "file_path": "", - "line_start": 6247, - "line_end": 6302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_125", - "name": "class_125", - "symbol_type": "Class", - "file_path": "", - "line_start": 6305, - "line_end": 6364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6368, - "line_end": 6409, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6413, - "line_end": 6423, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 6426, - "line_end": 6433, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_129", - "name": "class_129", - "symbol_type": "Class", - "file_path": "", - "line_start": 6436, - "line_end": 6447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6468, - "line_end": 6468, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_131", - "name": "class_131", - "symbol_type": "Class", - "file_path": "", - "line_start": 6471, - "line_end": 6480, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6534, - "line_end": 6560, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 6913, - "line_end": 7217, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 7220, - "line_end": 7293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 7335, - "line_end": 7405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 7412, - "line_end": 8611, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 9014, - "line_end": 9042, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 9045, - "line_end": 9096, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 9141, - "line_end": 12076, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 12158, - "line_end": 12602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 12650, - "line_end": 12750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 12766, - "line_end": 12774, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 12813, - "line_end": 12813, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 12814, - "line_end": 12814, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 12833, - "line_end": 13021, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 13586, - "line_end": 13669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 14695, - "line_end": 14748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14820, - "line_end": 14831, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14839, - "line_end": 14859, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14864, - "line_end": 14884, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14889, - "line_end": 14909, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14912, - "line_end": 14934, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 14954, - "line_end": 16750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 16840, - "line_end": 16956, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 16958, - "line_end": 16963, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 17097, - "line_end": 17102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17935, - "line_end": 18471, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_158", - "name": "class_158", - "symbol_type": "Class", - "file_path": "", - "line_start": 24351, - "line_end": 24366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-src/single_include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 6268, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.659849135Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyamesh/src/build-nyamesh-only-windows/_deps/json-subbuild/CMakeFiles/json-populate.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 122, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.671110304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CMakeCXXCompilerId.cpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "language": "cpp", - "size_bytes": 27673, - "total_lines": 869, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.700645758Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 869, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyamesh/src/build-nyamesh4-windows/CMakeFiles/nyamesh_v23.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 123, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.710745596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "foo.h", - "path": "./development/nyamesh/src/build-nyamesh4-windows/CMakeFiles/ShowIncludes/foo.h", - "language": "c", - "size_bytes": 2, - "total_lines": 1, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.728635144Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.c", - "path": "./development/nyamesh/src/build-nyamesh4-windows/CMakeFiles/ShowIncludes/main.c", - "language": "c", - "size_bytes": 33, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.730116694Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 2, - "line_end": 2, - "column_start": 0, - "column_end": 12, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "adl_serializer.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/adl_serializer.hpp", - "language": "cpp", - "size_bytes": 2279, - "total_lines": 55, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.747147558Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "byte_container_with_subtype.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/byte_container_with_subtype.hpp", - "language": "cpp", - "size_bytes": 3533, - "total_lines": 103, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.749087315Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "abi_macros.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/abi_macros.hpp", - "language": "cpp", - "size_bytes": 3807, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.751731911Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "from_json.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/conversions/from_json.hpp", - "language": "cpp", - "size_bytes": 18880, - "total_lines": 497, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.756753208Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 191, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 208, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 380, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 399, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 417, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 437, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 471, - "line_end": 480, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_chars.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/conversions/to_chars.hpp", - "language": "cpp", - "size_bytes": 38503, - "total_lines": 1118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.761236124Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 1115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 486, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 581, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 820, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 879, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 887, - "line_end": 919, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 967, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 1048, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 314, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "to_json.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/conversions/to_json.hpp", - "language": "cpp", - "size_bytes": 15749, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.765530519Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 288, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 301, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 324, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 344, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 357, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 363, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 376, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 392, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 400, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 406, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 412, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_6", - "name": "class_6", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 219, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 422, - "line_end": 429, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exceptions.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/exceptions.hpp", - "language": "cpp", - "size_bytes": 9128, - "total_lines": 255, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.768762185Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_exception", - "name": "exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 176, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 217, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 234, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 251, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 187, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 218, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hash.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/hash.hpp", - "language": "cpp", - "size_bytes": 4016, - "total_lines": 129, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.770901570Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_reader.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/binary_reader.hpp", - "language": "cpp", - "size_bytes": 103174, - "total_lines": 3010, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.779289877Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 3009, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 384, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 420, - "line_end": 898, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 911, - "line_end": 994, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1102, - "line_end": 1132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1196, - "line_end": 1565, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1577, - "line_end": 1648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1660, - "line_end": 1765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1771, - "line_end": 1787, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1793, - "line_end": 1817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1830, - "line_end": 1833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1849, - "line_end": 1938, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1944, - "line_end": 1996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 2009, - "line_end": 2219, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 2232, - "line_end": 2293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 2299, - "line_end": 2477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 2482, - "line_end": 2585, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 2590, - "line_end": 2668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 2673, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 2752, - "line_end": 2756, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 2761, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 2788, - "line_end": 2814, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 2831, - "line_end": 2847, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 2864, - "line_end": 2880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 2887, - "line_end": 2896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 2901, - "line_end": 2906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 3002, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "input_adapters.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/input_adapters.hpp", - "language": "cpp", - "size_bytes": 17372, - "total_lines": 494, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.784194270Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 305, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 410, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 426, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 436, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 454, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 460, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 475, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 482, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 178, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 236, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 299, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 344, - "line_end": 354, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 357, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_8", - "name": "class_8", - "symbol_type": "Class", - "file_path": "", - "line_start": 367, - "line_end": 378, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 399, - "line_end": 399, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 402, - "line_end": 411, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 491, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_sax.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/json_sax.hpp", - "language": "cpp", - "size_bytes": 21370, - "total_lines": 728, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.788031585Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 182, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 185, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 365, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 366, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 367, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 368, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 369, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 387, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 531, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 709, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 345, - "line_end": 649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 652, - "line_end": 725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lexer.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/lexer.hpp", - "language": "cpp", - "size_bytes": 54544, - "total_lines": 1632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.793268756Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 1311, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 838, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 909, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 924, - "line_end": 927, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 1292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 1320, - "line_end": 1325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1364, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 1374, - "line_end": 1398, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 1401, - "line_end": 1404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1412, - "line_end": 1415, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1418, - "line_end": 1421, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1424, - "line_end": 1427, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1430, - "line_end": 1433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 1440, - "line_end": 1443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1448, - "line_end": 1469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1472, - "line_end": 1476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 1486, - "line_end": 1498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 1500, - "line_end": 1507, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 1509, - "line_end": 1595, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 1310, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "parser.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/parser.hpp", - "language": "cpp", - "size_bytes": 18722, - "total_lines": 507, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.796888952Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 506, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 466, - "line_end": 493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 504, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "position_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/input/position_t.hpp", - "language": "cpp", - "size_bytes": 958, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.798830352Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "internal_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/internal_iterator.hpp", - "language": "cpp", - "size_bytes": 1071, - "total_lines": 35, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.802011655Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 32, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iteration_proxy.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/iteration_proxy.hpp", - "language": "cpp", - "size_bytes": 7962, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.804254961Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 168, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 154, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 187, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 223, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 232, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iterator_traits.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/iterator_traits.hpp", - "language": "cpp", - "size_bytes": 1757, - "total_lines": 61, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.806343569Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "iter_impl.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/iter_impl.hpp", - "language": "cpp", - "size_bytes": 23906, - "total_lines": 751, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.809997186Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 318, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 273, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 234, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 505, - "line_end": 508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 552, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 616, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 622, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 638, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 655, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 716, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 732, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 738, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 235, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_reverse_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/json_reverse_iterator.hpp", - "language": "cpp", - "size_bytes": 3861, - "total_lines": 130, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.812555181Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 55, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "primitive_iterator.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/iterators/primitive_iterator.hpp", - "language": "cpp", - "size_bytes": 3227, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.814504420Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 90, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_pointer.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/json_pointer.hpp", - "language": "cpp", - "size_bytes": 37067, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.819595733Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 48, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 480, - "line_end": 520, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 854, - "line_end": 857, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 862, - "line_end": 865, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 935, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 953, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 960, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 969, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 974, - "line_end": 978, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 985, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_ref.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/json_ref.hpp", - "language": "cpp", - "size_bytes": 1811, - "total_lines": 78, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.822139957Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_scope.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/macro_scope.hpp", - "language": "cpp", - "size_bytes": 42861, - "total_lines": 468, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.825147888Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 448, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "macro_unscope.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/macro_unscope.hpp", - "language": "cpp", - "size_bytes": 1220, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.827129655Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "begin.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/call_std/begin.hpp", - "language": "cpp", - "size_bytes": 453, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.830500437Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "end.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/call_std/end.hpp", - "language": "cpp", - "size_bytes": 451, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.832064003Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp_future.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/cpp_future.hpp", - "language": "cpp", - "size_bytes": 5178, - "total_lines": 171, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.834457384Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 170, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_5", - "name": "class_5", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "detected.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/detected.hpp", - "language": "cpp", - "size_bytes": 2109, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.836389639Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_2", - "name": "class_2", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "identity_tag.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/identity_tag.hpp", - "language": "cpp", - "size_bytes": 526, - "total_lines": 21, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.838182441Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "is_sax.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/is_sax.hpp", - "language": "cpp", - "size_bytes": 6960, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.840406772Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "std_fs.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/std_fs.hpp", - "language": "cpp", - "size_bytes": 766, - "total_lines": 29, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.842165961Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_traits.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/type_traits.hpp", - "language": "cpp", - "size_bytes": 28099, - "total_lines": 740, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.846362807Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 739, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 584, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 590, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 623, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 650, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 707, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 726, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 62, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_4", - "name": "class_4", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_7", - "name": "class_7", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 141, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_11", - "name": "class_11", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_15", - "name": "class_15", - "symbol_type": "Class", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_16", - "name": "class_16", - "symbol_type": "Class", - "file_path": "", - "line_start": 192, - "line_end": 193, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 206, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 210, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_21", - "name": "class_21", - "symbol_type": "Class", - "file_path": "", - "line_start": 213, - "line_end": 214, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_22", - "name": "class_22", - "symbol_type": "Class", - "file_path": "", - "line_start": 217, - "line_end": 218, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 222, - "line_end": 222, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_24", - "name": "class_24", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_25", - "name": "class_25", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 228, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_26", - "name": "class_26", - "symbol_type": "Class", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_29", - "name": "class_29", - "symbol_type": "Class", - "file_path": "", - "line_start": 241, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 311, - "line_end": 312, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_37", - "name": "class_37", - "symbol_type": "Class", - "file_path": "", - "line_start": 319, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 348, - "line_end": 352, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 355, - "line_end": 369, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 375, - "line_end": 387, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 390, - "line_end": 391, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 394, - "line_end": 394, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 397, - "line_end": 401, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 404, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 434, - "line_end": 435, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 439, - "line_end": 439, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 442, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 465, - "line_end": 465, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 468, - "line_end": 474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 477, - "line_end": 478, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 481, - "line_end": 481, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 484, - "line_end": 484, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 487, - "line_end": 487, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 490, - "line_end": 490, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 493, - "line_end": 494, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 498, - "line_end": 498, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 501, - "line_end": 501, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 508, - "line_end": 508, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_62", - "name": "class_62", - "symbol_type": "Class", - "file_path": "", - "line_start": 511, - "line_end": 514, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 564, - "line_end": 577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 568, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 614, - "line_end": 614, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_66", - "name": "class_66", - "symbol_type": "Class", - "file_path": "", - "line_start": 617, - "line_end": 624, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_67", - "name": "class_67", - "symbol_type": "Class", - "file_path": "", - "line_start": 627, - "line_end": 634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 637, - "line_end": 644, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 648, - "line_end": 656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 661, - "line_end": 661, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_71", - "name": "class_71", - "symbol_type": "Class", - "file_path": "", - "line_start": 664, - "line_end": 670, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 673, - "line_end": 679, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 713, - "line_end": 713, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 735, - "line_end": 735, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "void_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/meta/void_t.hpp", - "language": "cpp", - "size_bytes": 597, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.848528502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "binary_writer.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/output/binary_writer.hpp", - "language": "cpp", - "size_bytes": 69893, - "total_lines": 1838, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.857915442Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 1837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 987, - "line_end": 992, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 997, - "line_end": 1002, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 1015, - "line_end": 1024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 1029, - "line_end": 1032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 1037, - "line_end": 1042, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 1047, - "line_end": 1060, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 1065, - "line_end": 1070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 1075, - "line_end": 1092, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 1097, - "line_end": 1102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 1107, - "line_end": 1117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 1122, - "line_end": 1125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 1149, - "line_end": 1158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 1164, - "line_end": 1204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1251, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 1274, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 1290, - "line_end": 1293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 1304, - "line_end": 1307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1321, - "line_end": 1330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1335, - "line_end": 1417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 1423, - "line_end": 1499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 1504, - "line_end": 1603, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 1605, - "line_end": 1608, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 1610, - "line_end": 1613, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 1618, - "line_end": 1725, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1745, - "line_end": 1759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 1761, - "line_end": 1786, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1795, - "line_end": 1798, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1802, - "line_end": 1809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1813, - "line_end": 1816, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1824, - "line_end": 1827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 1835, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "output_adapters.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/output/output_adapters.hpp", - "language": "cpp", - "size_bytes": 4067, - "total_lines": 147, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.861468203Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 127, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 131, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 135, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 41, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "serializer.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/output/serializer.hpp", - "language": "cpp", - "size_bytes": 39896, - "total_lines": 988, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.866423520Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 670, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 76, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 586, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 677, - "line_end": 684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 691, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 697, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 799, - "line_end": 818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 877, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 940, - "line_end": 944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 955, - "line_end": 959, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 587, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_concat.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/string_concat.hpp", - "language": "cpp", - "size_bytes": 6006, - "total_lines": 146, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.870056718Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 54, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_escape.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/string_escape.hpp", - "language": "cpp", - "size_bytes": 2168, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.872208609Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "value_t.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/detail/value_t.hpp", - "language": "cpp", - "size_bytes": 4326, - "total_lines": 118, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.874126744Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 104, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 193862, - "total_lines": 5214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.896701167Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 651, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 391, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 443, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 445, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 447, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 449, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 451, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 522, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 525, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 528, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 531, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 534, - "line_end": 534, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 537, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 540, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 543, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 546, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 549, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 650, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 688, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 730, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 809, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 825, - "line_end": 832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 958, - "line_end": 965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1020, - "line_end": 1120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1130, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1134, - "line_end": 1198, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1202, - "line_end": 1215, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 1219, - "line_end": 1236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 1240, - "line_end": 1244, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1281, - "line_end": 1284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 1288, - "line_end": 1291, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 1295, - "line_end": 1298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 1302, - "line_end": 1305, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 1309, - "line_end": 1312, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 1316, - "line_end": 1319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 1323, - "line_end": 1326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 1330, - "line_end": 1333, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 1337, - "line_end": 1340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 1344, - "line_end": 1347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1354, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1358, - "line_end": 1361, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 1365, - "line_end": 1368, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 1372, - "line_end": 1375, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_58", - "name": "function_58", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1935, - "line_end": 1939, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1949, - "line_end": 1963, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 1958, - "line_end": 1962, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1972, - "line_end": 1986, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 1992, - "line_end": 2006, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2010, - "line_end": 2024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 2030, - "line_end": 2044, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_66", - "name": "function_66", - "symbol_type": "Function", - "file_path": "", - "line_start": 2048, - "line_end": 2090, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_67", - "name": "function_67", - "symbol_type": "Function", - "file_path": "", - "line_start": 2094, - "line_end": 2103, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_68", - "name": "function_68", - "symbol_type": "Function", - "file_path": "", - "line_start": 2107, - "line_end": 2125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_69", - "name": "function_69", - "symbol_type": "Function", - "file_path": "", - "line_start": 2129, - "line_end": 2140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_70", - "name": "function_70", - "symbol_type": "Function", - "file_path": "", - "line_start": 2145, - "line_end": 2148, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_71", - "name": "function_71", - "symbol_type": "Function", - "file_path": "", - "line_start": 2151, - "line_end": 2154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_72", - "name": "function_72", - "symbol_type": "Function", - "file_path": "", - "line_start": 2160, - "line_end": 2178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_73", - "name": "function_73", - "symbol_type": "Function", - "file_path": "", - "line_start": 2184, - "line_end": 2195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2239, - "line_end": 2255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2265, - "line_end": 2281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2292, - "line_end": 2308, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2315, - "line_end": 2329, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2325, - "line_end": 2328, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2340, - "line_end": 2354, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 2350, - "line_end": 2353, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2364, - "line_end": 2367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 2375, - "line_end": 2378, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2382, - "line_end": 2385, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 2389, - "line_end": 2392, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2396, - "line_end": 2401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 2405, - "line_end": 2410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2417, - "line_end": 2480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2487, - "line_end": 2553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2555, - "line_end": 2567, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 2571, - "line_end": 2586, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2603, - "line_end": 2606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 2610, - "line_end": 2626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2640, - "line_end": 2650, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2654, - "line_end": 2664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2670, - "line_end": 2680, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 2686, - "line_end": 2696, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2700, - "line_end": 2704, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 2710, - "line_end": 2714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2718, - "line_end": 2721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2727, - "line_end": 2730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2734, - "line_end": 2737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 2741, - "line_end": 2744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2758, - "line_end": 2763, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2767, - "line_end": 2770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2774, - "line_end": 2779, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2783, - "line_end": 2788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 2792, - "line_end": 2795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2799, - "line_end": 2804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2808, - "line_end": 2811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2815, - "line_end": 2818, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2822, - "line_end": 2825, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2829, - "line_end": 2832, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 2836, - "line_end": 2839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 2843, - "line_end": 2846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2855, - "line_end": 2858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 2866, - "line_end": 2869, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2873, - "line_end": 2876, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 2880, - "line_end": 2883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 2897, - "line_end": 2932, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2936, - "line_end": 2971, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 2975, - "line_end": 3005, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 3019, - "line_end": 3076, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3080, - "line_end": 3101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 3105, - "line_end": 3109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3113, - "line_end": 3133, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_126", - "name": "function_126", - "symbol_type": "Function", - "file_path": "", - "line_start": 3137, - "line_end": 3141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3145, - "line_end": 3164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_128", - "name": "function_128", - "symbol_type": "Function", - "file_path": "", - "line_start": 3168, - "line_end": 3172, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3176, - "line_end": 3188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_130", - "name": "function_130", - "symbol_type": "Function", - "file_path": "", - "line_start": 3192, - "line_end": 3196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 3201, - "line_end": 3221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 3226, - "line_end": 3252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 3258, - "line_end": 3273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3277, - "line_end": 3293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3297, - "line_end": 3300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3304, - "line_end": 3320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3324, - "line_end": 3351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3355, - "line_end": 3371, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 3375, - "line_end": 3396, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3400, - "line_end": 3403, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 3407, - "line_end": 3450, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3454, - "line_end": 3467, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3471, - "line_end": 3479, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3483, - "line_end": 3495, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3499, - "line_end": 3511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3515, - "line_end": 3527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3531, - "line_end": 3543, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 3547, - "line_end": 3559, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 3636, - "line_end": 3639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 3665, - "line_end": 3668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_151", - "name": "function_151", - "symbol_type": "Function", - "file_path": "", - "line_start": 3674, - "line_end": 3685, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_152", - "name": "function_152", - "symbol_type": "Function", - "file_path": "", - "line_start": 3691, - "line_end": 3694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_153", - "name": "function_153", - "symbol_type": "Function", - "file_path": "", - "line_start": 3698, - "line_end": 3705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_154", - "name": "function_154", - "symbol_type": "Function", - "file_path": "", - "line_start": 3709, - "line_end": 3718, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_155", - "name": "function_155", - "symbol_type": "Function", - "file_path": "", - "line_start": 3724, - "line_end": 3727, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_156", - "name": "function_156", - "symbol_type": "Function", - "file_path": "", - "line_start": 3736, - "line_end": 3743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_157", - "name": "function_157", - "symbol_type": "Function", - "file_path": "", - "line_start": 3749, - "line_end": 3752, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_158", - "name": "function_158", - "symbol_type": "Function", - "file_path": "", - "line_start": 3757, - "line_end": 3764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_159", - "name": "function_159", - "symbol_type": "Function", - "file_path": "", - "line_start": 3770, - "line_end": 3773, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_160", - "name": "function_160", - "symbol_type": "Function", - "file_path": "", - "line_start": 3778, - "line_end": 3788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_161", - "name": "function_161", - "symbol_type": "Function", - "file_path": "", - "line_start": 3794, - "line_end": 3797, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_162", - "name": "function_162", - "symbol_type": "Function", - "file_path": "", - "line_start": 3803, - "line_end": 3806, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_163", - "name": "function_163", - "symbol_type": "Function", - "file_path": "", - "line_start": 3810, - "line_end": 3817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_164", - "name": "function_164", - "symbol_type": "Function", - "file_path": "", - "line_start": 3823, - "line_end": 3826, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_165", - "name": "function_165", - "symbol_type": "Function", - "file_path": "", - "line_start": 3832, - "line_end": 3835, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_166", - "name": "function_166", - "symbol_type": "Function", - "file_path": "", - "line_start": 3839, - "line_end": 4935, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_167", - "name": "function_167", - "symbol_type": "Function", - "file_path": "", - "line_start": 3860, - "line_end": 3863, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_168", - "name": "function_168", - "symbol_type": "Function", - "file_path": "", - "line_start": 3867, - "line_end": 3874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_169", - "name": "function_169", - "symbol_type": "Function", - "file_path": "", - "line_start": 3880, - "line_end": 3883, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 3889, - "line_end": 3892, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 3896, - "line_end": 3904, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_172", - "name": "function_172", - "symbol_type": "Function", - "file_path": "", - "line_start": 3910, - "line_end": 3913, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_173", - "name": "function_173", - "symbol_type": "Function", - "file_path": "", - "line_start": 3919, - "line_end": 3922, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_174", - "name": "function_174", - "symbol_type": "Function", - "file_path": "", - "line_start": 3926, - "line_end": 3933, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_175", - "name": "function_175", - "symbol_type": "Function", - "file_path": "", - "line_start": 3939, - "line_end": 3942, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 3948, - "line_end": 3951, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_177", - "name": "function_177", - "symbol_type": "Function", - "file_path": "", - "line_start": 3967, - "line_end": 3980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4007, - "line_end": 4016, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4021, - "line_end": 4031, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4043, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4048, - "line_end": 4052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4057, - "line_end": 4061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 4065, - "line_end": 4069, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4075, - "line_end": 4084, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4090, - "line_end": 4099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 4109, - "line_end": 4120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 4150, - "line_end": 4175, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4213, - "line_end": 4216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4220, - "line_end": 4223, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4227, - "line_end": 4232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4236, - "line_end": 4239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4243, - "line_end": 4246, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4250, - "line_end": 4257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4261, - "line_end": 4265, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4269, - "line_end": 4273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4288, - "line_end": 4292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4296, - "line_end": 4300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4309, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4320, - "line_end": 4323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4328, - "line_end": 4339, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4344, - "line_end": 4355, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4360, - "line_end": 4366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 4371, - "line_end": 4382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4387, - "line_end": 4397, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4402, - "line_end": 4412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4417, - "line_end": 4422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 4426, - "line_end": 4436, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4441, - "line_end": 4451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4456, - "line_end": 4466, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4471, - "line_end": 4476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4496, - "line_end": 4506, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 4511, - "line_end": 4521, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4526, - "line_end": 4536, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4541, - "line_end": 4551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4556, - "line_end": 4561, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_220", - "name": "function_220", - "symbol_type": "Function", - "file_path": "", - "line_start": 4587, - "line_end": 4590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_221", - "name": "function_221", - "symbol_type": "Function", - "file_path": "", - "line_start": 4594, - "line_end": 4597, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_222", - "name": "function_222", - "symbol_type": "Function", - "file_path": "", - "line_start": 4601, - "line_end": 4604, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_223", - "name": "function_223", - "symbol_type": "Function", - "file_path": "", - "line_start": 4608, - "line_end": 4611, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4615, - "line_end": 4618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4622, - "line_end": 4625, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4629, - "line_end": 4632, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 4636, - "line_end": 4639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4643, - "line_end": 4648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 4652, - "line_end": 4655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 4668, - "line_end": 4934, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 4948, - "line_end": 5079, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 5091, - "line_end": 5115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 5122, - "line_end": 5126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 5136, - "line_end": 5139, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 5144, - "line_end": 5147, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5205, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 5162, - "line_end": 5169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 5165, - "line_end": 5168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 5179, - "line_end": 5187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 5195, - "line_end": 5201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 5173, - "line_end": 5188, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 2469, - "total_lines": 74, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.901796052Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ordered_map.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/ordered_map.hpp", - "language": "cpp", - "size_bytes": 11447, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.904514499Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 50, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 52, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/thirdparty/hedley/hedley.hpp", - "language": "cpp", - "size_bytes": 86068, - "total_lines": 2045, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.911180737Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "hedley_undef.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/include/nlohmann/thirdparty/hedley/hedley_undef.hpp", - "language": "cpp", - "size_bytes": 5500, - "total_lines": 158, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.913732874Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/single_include/nlohmann/json.hpp", - "language": "cpp", - "size_bytes": 907858, - "total_lines": 24596, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:46.994764081Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 266, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 267, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 2824, - "line_end": 2920, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 2886, - "line_end": 2907, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 2914, - "line_end": 2917, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 2921, - "line_end": 2995, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 2955, - "line_end": 2964, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2974, - "line_end": 2979, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2989, - "line_end": 2993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 3014, - "line_end": 3035, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 3029, - "line_end": 3032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 3060, - "line_end": 3211, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 3109, - "line_end": 3112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 3206, - "line_end": 3209, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 3250, - "line_end": 3293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 3420, - "line_end": 4135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3977, - "line_end": 3980, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 3983, - "line_end": 3986, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 4015, - "line_end": 4019, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 4025, - "line_end": 4029, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 4035, - "line_end": 4039, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 4046, - "line_end": 4051, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 4062, - "line_end": 4065, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 4071, - "line_end": 4074, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 4078, - "line_end": 4081, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 4094, - "line_end": 4103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4122, - "line_end": 4125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 4158, - "line_end": 4285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4162, - "line_end": 4165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4174, - "line_end": 4177, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4180, - "line_end": 4184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4187, - "line_end": 4190, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4193, - "line_end": 4194, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4240, - "line_end": 4244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4249, - "line_end": 4253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4259, - "line_end": 4263, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4270, - "line_end": 4274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 4277, - "line_end": 4283, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 4286, - "line_end": 4518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 4304, - "line_end": 4307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 4313, - "line_end": 4314, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 4316, - "line_end": 4319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 4321, - "line_end": 4324, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 4327, - "line_end": 4389, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4411, - "line_end": 4416, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4419, - "line_end": 4425, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 4439, - "line_end": 4440, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 4442, - "line_end": 4446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4455, - "line_end": 4459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_55", - "name": "function_55", - "symbol_type": "Function", - "file_path": "", - "line_start": 4462, - "line_end": 4464, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4473, - "line_end": 4477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_57", - "name": "function_57", - "symbol_type": "Function", - "file_path": "", - "line_start": 4480, - "line_end": 4481, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4490, - "line_end": 4494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 4497, - "line_end": 4498, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4507, - "line_end": 4511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 4514, - "line_end": 4515, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_62", - "name": "function_62", - "symbol_type": "Function", - "file_path": "", - "line_start": 4519, - "line_end": 4546, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 4565, - "line_end": 4569, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_64", - "name": "function_64", - "symbol_type": "Function", - "file_path": "", - "line_start": 4573, - "line_end": 4577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_65", - "name": "function_65", - "symbol_type": "Function", - "file_path": "", - "line_start": 4588, - "line_end": 4788, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4593, - "line_end": 4600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 4607, - "line_end": 4637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4640, - "line_end": 4647, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4650, - "line_end": 4657, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4666, - "line_end": 4674, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4677, - "line_end": 4680, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4683, - "line_end": 4686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4689, - "line_end": 4692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4697, - "line_end": 4702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4708, - "line_end": 4720, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4725, - "line_end": 4737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4740, - "line_end": 4747, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4750, - "line_end": 4753, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4756, - "line_end": 4764, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4794, - "line_end": 4809, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4819, - "line_end": 4830, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4833, - "line_end": 4837, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4840, - "line_end": 4849, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4852, - "line_end": 4860, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4864, - "line_end": 4882, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4896, - "line_end": 4930, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 4933, - "line_end": 4936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4939, - "line_end": 4943, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4946, - "line_end": 4949, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4952, - "line_end": 4955, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4958, - "line_end": 4961, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4964, - "line_end": 4973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4978, - "line_end": 4993, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4998, - "line_end": 5013, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5017, - "line_end": 5024, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_96", - "name": "function_96", - "symbol_type": "Function", - "file_path": "", - "line_start": 5030, - "line_end": 5035, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_97", - "name": "function_97", - "symbol_type": "Function", - "file_path": "", - "line_start": 5103, - "line_end": 5284, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 5108, - "line_end": 5113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5137, - "line_end": 5137, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5138, - "line_end": 5143, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5145, - "line_end": 5145, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_102", - "name": "function_102", - "symbol_type": "Function", - "file_path": "", - "line_start": 5146, - "line_end": 5146, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5148, - "line_end": 5150, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_104", - "name": "function_104", - "symbol_type": "Function", - "file_path": "", - "line_start": 5151, - "line_end": 5153, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_105", - "name": "function_105", - "symbol_type": "Function", - "file_path": "", - "line_start": 5154, - "line_end": 5154, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_106", - "name": "function_106", - "symbol_type": "Function", - "file_path": "", - "line_start": 5157, - "line_end": 5160, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_107", - "name": "function_107", - "symbol_type": "Function", - "file_path": "", - "line_start": 5163, - "line_end": 5169, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_108", - "name": "function_108", - "symbol_type": "Function", - "file_path": "", - "line_start": 5171, - "line_end": 5177, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_109", - "name": "function_109", - "symbol_type": "Function", - "file_path": "", - "line_start": 5180, - "line_end": 5183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_110", - "name": "function_110", - "symbol_type": "Function", - "file_path": "", - "line_start": 5186, - "line_end": 5189, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_111", - "name": "function_111", - "symbol_type": "Function", - "file_path": "", - "line_start": 5192, - "line_end": 5225, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_112", - "name": "function_112", - "symbol_type": "Function", - "file_path": "", - "line_start": 5228, - "line_end": 5231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5242, - "line_end": 5242, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5245, - "line_end": 5246, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5248, - "line_end": 5248, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_116", - "name": "function_116", - "symbol_type": "Function", - "file_path": "", - "line_start": 5249, - "line_end": 5249, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5250, - "line_end": 5250, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_118", - "name": "function_118", - "symbol_type": "Function", - "file_path": "", - "line_start": 5251, - "line_end": 5251, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_119", - "name": "function_119", - "symbol_type": "Function", - "file_path": "", - "line_start": 5252, - "line_end": 5252, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_120", - "name": "function_120", - "symbol_type": "Function", - "file_path": "", - "line_start": 5255, - "line_end": 5258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_121", - "name": "function_121", - "symbol_type": "Function", - "file_path": "", - "line_start": 5261, - "line_end": 5264, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5271, - "line_end": 5274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5279, - "line_end": 5282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 5285, - "line_end": 5315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_125", - "name": "function_125", - "symbol_type": "Function", - "file_path": "", - "line_start": 5333, - "line_end": 5737, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5354, - "line_end": 5360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5367, - "line_end": 5373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5376, - "line_end": 5382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5387, - "line_end": 5393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5400, - "line_end": 5406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5409, - "line_end": 5415, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5422, - "line_end": 5428, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5435, - "line_end": 5441, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5448, - "line_end": 5454, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5461, - "line_end": 5468, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5471, - "line_end": 5478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5483, - "line_end": 5493, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5496, - "line_end": 5508, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5512, - "line_end": 5524, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5531, - "line_end": 5538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5541, - "line_end": 5548, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5552, - "line_end": 5562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5571, - "line_end": 5574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5584, - "line_end": 5587, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5591, - "line_end": 5594, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5597, - "line_end": 5600, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5604, - "line_end": 5607, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5611, - "line_end": 5614, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5618, - "line_end": 5621, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5626, - "line_end": 5630, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5634, - "line_end": 5637, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5647, - "line_end": 5650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5653, - "line_end": 5656, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5660, - "line_end": 5663, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5666, - "line_end": 5669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5673, - "line_end": 5676, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5679, - "line_end": 5682, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5689, - "line_end": 5692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5695, - "line_end": 5698, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5703, - "line_end": 5706, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5709, - "line_end": 5712, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5715, - "line_end": 5718, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5722, - "line_end": 5725, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5776, - "line_end": 5781, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5826, - "line_end": 5828, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5831, - "line_end": 5833, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5836, - "line_end": 5838, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5841, - "line_end": 5845, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5848, - "line_end": 5852, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_170", - "name": "function_170", - "symbol_type": "Function", - "file_path": "", - "line_start": 5854, - "line_end": 5858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_171", - "name": "function_171", - "symbol_type": "Function", - "file_path": "", - "line_start": 5860, - "line_end": 5863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5867, - "line_end": 5871, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5875, - "line_end": 5878, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5882, - "line_end": 5885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5889, - "line_end": 5893, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 5928, - "line_end": 6038, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 5933, - "line_end": 5937, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 5951, - "line_end": 6036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_179", - "name": "function_179", - "symbol_type": "Function", - "file_path": "", - "line_start": 6098, - "line_end": 6562, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6120, - "line_end": 6124, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6127, - "line_end": 6127, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6128, - "line_end": 6128, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 6133, - "line_end": 6136, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_184", - "name": "function_184", - "symbol_type": "Function", - "file_path": "", - "line_start": 6158, - "line_end": 6166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6168, - "line_end": 6170, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6173, - "line_end": 6173, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_187", - "name": "function_187", - "symbol_type": "Function", - "file_path": "", - "line_start": 6174, - "line_end": 6174, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_188", - "name": "function_188", - "symbol_type": "Function", - "file_path": "", - "line_start": 6175, - "line_end": 6175, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6177, - "line_end": 6182, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_190", - "name": "function_190", - "symbol_type": "Function", - "file_path": "", - "line_start": 6187, - "line_end": 6196, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6213, - "line_end": 6215, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_192", - "name": "function_192", - "symbol_type": "Function", - "file_path": "", - "line_start": 6217, - "line_end": 6227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_193", - "name": "function_193", - "symbol_type": "Function", - "file_path": "", - "line_start": 6236, - "line_end": 6239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_194", - "name": "function_194", - "symbol_type": "Function", - "file_path": "", - "line_start": 6250, - "line_end": 6301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_195", - "name": "function_195", - "symbol_type": "Function", - "file_path": "", - "line_start": 6308, - "line_end": 6363, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6373, - "line_end": 6374, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_197", - "name": "function_197", - "symbol_type": "Function", - "file_path": "", - "line_start": 6376, - "line_end": 6391, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6397, - "line_end": 6400, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_199", - "name": "function_199", - "symbol_type": "Function", - "file_path": "", - "line_start": 6419, - "line_end": 6422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_200", - "name": "function_200", - "symbol_type": "Function", - "file_path": "", - "line_start": 6443, - "line_end": 6446, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6451, - "line_end": 6455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_202", - "name": "function_202", - "symbol_type": "Function", - "file_path": "", - "line_start": 6476, - "line_end": 6479, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6485, - "line_end": 6488, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6492, - "line_end": 6495, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6497, - "line_end": 6500, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6502, - "line_end": 6505, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6518, - "line_end": 6523, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6526, - "line_end": 6529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6543, - "line_end": 6544, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6550, - "line_end": 6551, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_211", - "name": "function_211", - "symbol_type": "Function", - "file_path": "", - "line_start": 6553, - "line_end": 6556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6744, - "line_end": 6746, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6749, - "line_end": 6749, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6750, - "line_end": 6750, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_215", - "name": "function_215", - "symbol_type": "Function", - "file_path": "", - "line_start": 6753, - "line_end": 6753, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 6755, - "line_end": 6759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 6761, - "line_end": 6765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6767, - "line_end": 6771, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 6773, - "line_end": 6777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 6779, - "line_end": 6783, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 6785, - "line_end": 6789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 6791, - "line_end": 6795, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6797, - "line_end": 6807, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 6809, - "line_end": 6817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6819, - "line_end": 6827, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6829, - "line_end": 6839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6841, - "line_end": 6849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 6852, - "line_end": 6862, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 6864, - "line_end": 6867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6924, - "line_end": 6930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6933, - "line_end": 6933, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6934, - "line_end": 6934, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_233", - "name": "function_233", - "symbol_type": "Function", - "file_path": "", - "line_start": 6935, - "line_end": 6935, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_234", - "name": "function_234", - "symbol_type": "Function", - "file_path": "", - "line_start": 6936, - "line_end": 6936, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_235", - "name": "function_235", - "symbol_type": "Function", - "file_path": "", - "line_start": 6937, - "line_end": 6937, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_236", - "name": "function_236", - "symbol_type": "Function", - "file_path": "", - "line_start": 6939, - "line_end": 6943, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_237", - "name": "function_237", - "symbol_type": "Function", - "file_path": "", - "line_start": 6945, - "line_end": 6949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_238", - "name": "function_238", - "symbol_type": "Function", - "file_path": "", - "line_start": 6951, - "line_end": 6955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 6957, - "line_end": 6961, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 6963, - "line_end": 6967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_241", - "name": "function_241", - "symbol_type": "Function", - "file_path": "", - "line_start": 6969, - "line_end": 6973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_242", - "name": "function_242", - "symbol_type": "Function", - "file_path": "", - "line_start": 6975, - "line_end": 6979, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_243", - "name": "function_243", - "symbol_type": "Function", - "file_path": "", - "line_start": 6981, - "line_end": 6997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_244", - "name": "function_244", - "symbol_type": "Function", - "file_path": "", - "line_start": 6999, - "line_end": 7014, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_245", - "name": "function_245", - "symbol_type": "Function", - "file_path": "", - "line_start": 7016, - "line_end": 7050, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_246", - "name": "function_246", - "symbol_type": "Function", - "file_path": "", - "line_start": 7052, - "line_end": 7067, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_247", - "name": "function_247", - "symbol_type": "Function", - "file_path": "", - "line_start": 7069, - "line_end": 7099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 7102, - "line_end": 7112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_249", - "name": "function_249", - "symbol_type": "Function", - "file_path": "", - "line_start": 7114, - "line_end": 7117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 7136, - "line_end": 7197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_251", - "name": "function_251", - "symbol_type": "Function", - "file_path": "", - "line_start": 7229, - "line_end": 7232, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_252", - "name": "function_252", - "symbol_type": "Function", - "file_path": "", - "line_start": 7234, - "line_end": 7237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_253", - "name": "function_253", - "symbol_type": "Function", - "file_path": "", - "line_start": 7239, - "line_end": 7242, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_254", - "name": "function_254", - "symbol_type": "Function", - "file_path": "", - "line_start": 7244, - "line_end": 7247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_255", - "name": "function_255", - "symbol_type": "Function", - "file_path": "", - "line_start": 7249, - "line_end": 7252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_256", - "name": "function_256", - "symbol_type": "Function", - "file_path": "", - "line_start": 7254, - "line_end": 7257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_257", - "name": "function_257", - "symbol_type": "Function", - "file_path": "", - "line_start": 7259, - "line_end": 7262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_258", - "name": "function_258", - "symbol_type": "Function", - "file_path": "", - "line_start": 7264, - "line_end": 7267, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_259", - "name": "function_259", - "symbol_type": "Function", - "file_path": "", - "line_start": 7269, - "line_end": 7272, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_260", - "name": "function_260", - "symbol_type": "Function", - "file_path": "", - "line_start": 7274, - "line_end": 7277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_261", - "name": "function_261", - "symbol_type": "Function", - "file_path": "", - "line_start": 7279, - "line_end": 7282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_262", - "name": "function_262", - "symbol_type": "Function", - "file_path": "", - "line_start": 7284, - "line_end": 7287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_263", - "name": "function_263", - "symbol_type": "Function", - "file_path": "", - "line_start": 7289, - "line_end": 7292, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_264", - "name": "function_264", - "symbol_type": "Function", - "file_path": "", - "line_start": 7326, - "line_end": 8612, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_265", - "name": "function_265", - "symbol_type": "Function", - "file_path": "", - "line_start": 7363, - "line_end": 7404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7424, - "line_end": 7428, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7431, - "line_end": 7431, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7432, - "line_end": 7432, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_269", - "name": "function_269", - "symbol_type": "Function", - "file_path": "", - "line_start": 7433, - "line_end": 7433, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_270", - "name": "function_270", - "symbol_type": "Function", - "file_path": "", - "line_start": 7434, - "line_end": 7434, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_271", - "name": "function_271", - "symbol_type": "Function", - "file_path": "", - "line_start": 7435, - "line_end": 7435, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_272", - "name": "function_272", - "symbol_type": "Function", - "file_path": "", - "line_start": 7443, - "line_end": 7449, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_273", - "name": "function_273", - "symbol_type": "Function", - "file_path": "", - "line_start": 7470, - "line_end": 7501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_274", - "name": "function_274", - "symbol_type": "Function", - "file_path": "", - "line_start": 7518, - "line_end": 7538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_275", - "name": "function_275", - "symbol_type": "Function", - "file_path": "", - "line_start": 7555, - "line_end": 8139, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_276", - "name": "function_276", - "symbol_type": "Function", - "file_path": "", - "line_start": 8145, - "line_end": 8210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_277", - "name": "function_277", - "symbol_type": "Function", - "file_path": "", - "line_start": 8213, - "line_end": 8216, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_278", - "name": "function_278", - "symbol_type": "Function", - "file_path": "", - "line_start": 8219, - "line_end": 8222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_279", - "name": "function_279", - "symbol_type": "Function", - "file_path": "", - "line_start": 8225, - "line_end": 8228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_280", - "name": "function_280", - "symbol_type": "Function", - "file_path": "", - "line_start": 8270, - "line_end": 8593, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 8621, - "line_end": 8626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 8638, - "line_end": 8665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 8675, - "line_end": 8699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 8702, - "line_end": 8705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_285", - "name": "function_285", - "symbol_type": "Function", - "file_path": "", - "line_start": 8713, - "line_end": 8716, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 8719, - "line_end": 8722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 8725, - "line_end": 8728, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_288", - "name": "function_288", - "symbol_type": "Function", - "file_path": "", - "line_start": 8731, - "line_end": 8734, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 8741, - "line_end": 8744, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 8749, - "line_end": 8770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_291", - "name": "function_291", - "symbol_type": "Function", - "file_path": "", - "line_start": 8773, - "line_end": 8777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 8787, - "line_end": 8799, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 8801, - "line_end": 8808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 8810, - "line_end": 8896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_295", - "name": "function_295", - "symbol_type": "Function", - "file_path": "", - "line_start": 8959, - "line_end": 9098, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_296", - "name": "function_296", - "symbol_type": "Function", - "file_path": "", - "line_start": 9099, - "line_end": 12083, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 9127, - "line_end": 9130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9158, - "line_end": 9161, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9164, - "line_end": 9164, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9165, - "line_end": 9165, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_301", - "name": "function_301", - "symbol_type": "Function", - "file_path": "", - "line_start": 9166, - "line_end": 9166, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_302", - "name": "function_302", - "symbol_type": "Function", - "file_path": "", - "line_start": 9167, - "line_end": 9167, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_303", - "name": "function_303", - "symbol_type": "Function", - "file_path": "", - "line_start": 9168, - "line_end": 9168, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_304", - "name": "function_304", - "symbol_type": "Function", - "file_path": "", - "line_start": 9178, - "line_end": 9231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_305", - "name": "function_305", - "symbol_type": "Function", - "file_path": "", - "line_start": 9242, - "line_end": 9258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_306", - "name": "function_306", - "symbol_type": "Function", - "file_path": "", - "line_start": 9267, - "line_end": 9283, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 9297, - "line_end": 9307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 9319, - "line_end": 9334, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_309", - "name": "function_309", - "symbol_type": "Function", - "file_path": "", - "line_start": 9346, - "line_end": 9412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_310", - "name": "function_310", - "symbol_type": "Function", - "file_path": "", - "line_start": 9426, - "line_end": 9458, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_311", - "name": "function_311", - "symbol_type": "Function", - "file_path": "", - "line_start": 9464, - "line_end": 9480, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_312", - "name": "function_312", - "symbol_type": "Function", - "file_path": "", - "line_start": 9494, - "line_end": 9972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_313", - "name": "function_313", - "symbol_type": "Function", - "file_path": "", - "line_start": 9985, - "line_end": 10068, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_314", - "name": "function_314", - "symbol_type": "Function", - "file_path": "", - "line_start": 10081, - "line_end": 10168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_315", - "name": "function_315", - "symbol_type": "Function", - "file_path": "", - "line_start": 10176, - "line_end": 10206, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_316", - "name": "function_316", - "symbol_type": "Function", - "file_path": "", - "line_start": 10214, - "line_end": 10261, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_317", - "name": "function_317", - "symbol_type": "Function", - "file_path": "", - "line_start": 10270, - "line_end": 10639, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_318", - "name": "function_318", - "symbol_type": "Function", - "file_path": "", - "line_start": 10651, - "line_end": 10722, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_319", - "name": "function_319", - "symbol_type": "Function", - "file_path": "", - "line_start": 10734, - "line_end": 10839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_320", - "name": "function_320", - "symbol_type": "Function", - "file_path": "", - "line_start": 10845, - "line_end": 10861, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_321", - "name": "function_321", - "symbol_type": "Function", - "file_path": "", - "line_start": 10867, - "line_end": 10891, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_322", - "name": "function_322", - "symbol_type": "Function", - "file_path": "", - "line_start": 10904, - "line_end": 10907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_323", - "name": "function_323", - "symbol_type": "Function", - "file_path": "", - "line_start": 10923, - "line_end": 11012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_324", - "name": "function_324", - "symbol_type": "Function", - "file_path": "", - "line_start": 11018, - "line_end": 11070, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_325", - "name": "function_325", - "symbol_type": "Function", - "file_path": "", - "line_start": 11083, - "line_end": 11293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_326", - "name": "function_326", - "symbol_type": "Function", - "file_path": "", - "line_start": 11306, - "line_end": 11367, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_327", - "name": "function_327", - "symbol_type": "Function", - "file_path": "", - "line_start": 11373, - "line_end": 11551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_328", - "name": "function_328", - "symbol_type": "Function", - "file_path": "", - "line_start": 11556, - "line_end": 11659, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_329", - "name": "function_329", - "symbol_type": "Function", - "file_path": "", - "line_start": 11664, - "line_end": 11742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_330", - "name": "function_330", - "symbol_type": "Function", - "file_path": "", - "line_start": 11747, - "line_end": 11811, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_331", - "name": "function_331", - "symbol_type": "Function", - "file_path": "", - "line_start": 11826, - "line_end": 11830, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_332", - "name": "function_332", - "symbol_type": "Function", - "file_path": "", - "line_start": 11835, - "line_end": 11844, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 11862, - "line_end": 11888, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 11905, - "line_end": 11921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 11938, - "line_end": 11954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_336", - "name": "function_336", - "symbol_type": "Function", - "file_path": "", - "line_start": 11961, - "line_end": 11970, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_337", - "name": "function_337", - "symbol_type": "Function", - "file_path": "", - "line_start": 11975, - "line_end": 11980, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_338", - "name": "function_338", - "symbol_type": "Function", - "file_path": "", - "line_start": 11988, - "line_end": 12022, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_339", - "name": "function_339", - "symbol_type": "Function", - "file_path": "", - "line_start": 12125, - "line_end": 12604, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 12169, - "line_end": 12179, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_341", - "name": "function_341", - "symbol_type": "Function", - "file_path": "", - "line_start": 12191, - "line_end": 12243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_342", - "name": "function_342", - "symbol_type": "Function", - "file_path": "", - "line_start": 12251, - "line_end": 12255, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_343", - "name": "function_343", - "symbol_type": "Function", - "file_path": "", - "line_start": 12258, - "line_end": 12273, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_344", - "name": "function_344", - "symbol_type": "Function", - "file_path": "", - "line_start": 12277, - "line_end": 12556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_345", - "name": "function_345", - "symbol_type": "Function", - "file_path": "", - "line_start": 12559, - "line_end": 12562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_346", - "name": "function_346", - "symbol_type": "Function", - "file_path": "", - "line_start": 12564, - "line_end": 12591, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_347", - "name": "function_347", - "symbol_type": "Function", - "file_path": "", - "line_start": 12637, - "line_end": 12752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_348", - "name": "function_348", - "symbol_type": "Function", - "file_path": "", - "line_start": 12662, - "line_end": 12665, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_349", - "name": "function_349", - "symbol_type": "Function", - "file_path": "", - "line_start": 12668, - "line_end": 12671, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_350", - "name": "function_350", - "symbol_type": "Function", - "file_path": "", - "line_start": 12674, - "line_end": 12677, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_351", - "name": "function_351", - "symbol_type": "Function", - "file_path": "", - "line_start": 12680, - "line_end": 12683, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_352", - "name": "function_352", - "symbol_type": "Function", - "file_path": "", - "line_start": 12686, - "line_end": 12689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_353", - "name": "function_353", - "symbol_type": "Function", - "file_path": "", - "line_start": 12691, - "line_end": 12694, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_354", - "name": "function_354", - "symbol_type": "Function", - "file_path": "", - "line_start": 12696, - "line_end": 12699, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_355", - "name": "function_355", - "symbol_type": "Function", - "file_path": "", - "line_start": 12701, - "line_end": 12706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_356", - "name": "function_356", - "symbol_type": "Function", - "file_path": "", - "line_start": 12708, - "line_end": 12711, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_357", - "name": "function_357", - "symbol_type": "Function", - "file_path": "", - "line_start": 12713, - "line_end": 12717, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_358", - "name": "function_358", - "symbol_type": "Function", - "file_path": "", - "line_start": 12719, - "line_end": 12724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_359", - "name": "function_359", - "symbol_type": "Function", - "file_path": "", - "line_start": 12726, - "line_end": 12730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_360", - "name": "function_360", - "symbol_type": "Function", - "file_path": "", - "line_start": 12732, - "line_end": 12737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_361", - "name": "function_361", - "symbol_type": "Function", - "file_path": "", - "line_start": 12739, - "line_end": 12743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_362", - "name": "function_362", - "symbol_type": "Function", - "file_path": "", - "line_start": 12745, - "line_end": 12749, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_363", - "name": "function_363", - "symbol_type": "Function", - "file_path": "", - "line_start": 12753, - "line_end": 12776, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_364", - "name": "function_364", - "symbol_type": "Function", - "file_path": "", - "line_start": 12808, - "line_end": 13104, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 12833, - "line_end": 13059, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12875, - "line_end": 12875, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_367", - "name": "function_367", - "symbol_type": "Function", - "file_path": "", - "line_start": 12876, - "line_end": 12876, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12877, - "line_end": 12877, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_369", - "name": "function_369", - "symbol_type": "Function", - "file_path": "", - "line_start": 12878, - "line_end": 12878, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12886, - "line_end": 12918, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12936, - "line_end": 12938, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_372", - "name": "function_372", - "symbol_type": "Function", - "file_path": "", - "line_start": 12946, - "line_end": 12954, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12961, - "line_end": 12963, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_374", - "name": "function_374", - "symbol_type": "Function", - "file_path": "", - "line_start": 12971, - "line_end": 12976, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_375", - "name": "function_375", - "symbol_type": "Function", - "file_path": "", - "line_start": 12987, - "line_end": 13020, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_376", - "name": "function_376", - "symbol_type": "Function", - "file_path": "", - "line_start": 13110, - "line_end": 13146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_377", - "name": "function_377", - "symbol_type": "Function", - "file_path": "", - "line_start": 13152, - "line_end": 13157, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_378", - "name": "function_378", - "symbol_type": "Function", - "file_path": "", - "line_start": 13163, - "line_end": 13197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_379", - "name": "function_379", - "symbol_type": "Function", - "file_path": "", - "line_start": 13203, - "line_end": 13208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_380", - "name": "function_380", - "symbol_type": "Function", - "file_path": "", - "line_start": 13214, - "line_end": 13248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_381", - "name": "function_381", - "symbol_type": "Function", - "file_path": "", - "line_start": 13255, - "line_end": 13284, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_382", - "name": "function_382", - "symbol_type": "Function", - "file_path": "", - "line_start": 13291, - "line_end": 13294, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_383", - "name": "function_383", - "symbol_type": "Function", - "file_path": "", - "line_start": 13300, - "line_end": 13329, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_384", - "name": "function_384", - "symbol_type": "Function", - "file_path": "", - "line_start": 13335, - "line_end": 13338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_385", - "name": "function_385", - "symbol_type": "Function", - "file_path": "", - "line_start": 13344, - "line_end": 13347, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_386", - "name": "function_386", - "symbol_type": "Function", - "file_path": "", - "line_start": 13353, - "line_end": 13356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_387", - "name": "function_387", - "symbol_type": "Function", - "file_path": "", - "line_start": 13362, - "line_end": 13393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_388", - "name": "function_388", - "symbol_type": "Function", - "file_path": "", - "line_start": 13399, - "line_end": 13402, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_389", - "name": "function_389", - "symbol_type": "Function", - "file_path": "", - "line_start": 13408, - "line_end": 13413, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_390", - "name": "function_390", - "symbol_type": "Function", - "file_path": "", - "line_start": 13419, - "line_end": 13424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_391", - "name": "function_391", - "symbol_type": "Function", - "file_path": "", - "line_start": 13430, - "line_end": 13435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_392", - "name": "function_392", - "symbol_type": "Function", - "file_path": "", - "line_start": 13441, - "line_end": 13464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_393", - "name": "function_393", - "symbol_type": "Function", - "file_path": "", - "line_start": 13470, - "line_end": 13502, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_394", - "name": "function_394", - "symbol_type": "Function", - "file_path": "", - "line_start": 13508, - "line_end": 13518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 13524, - "line_end": 13527, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_396", - "name": "function_396", - "symbol_type": "Function", - "file_path": "", - "line_start": 13559, - "line_end": 13671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13596, - "line_end": 13597, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13600, - "line_end": 13600, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_399", - "name": "function_399", - "symbol_type": "Function", - "file_path": "", - "line_start": 13603, - "line_end": 13606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_400", - "name": "function_400", - "symbol_type": "Function", - "file_path": "", - "line_start": 13609, - "line_end": 13612, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_401", - "name": "function_401", - "symbol_type": "Function", - "file_path": "", - "line_start": 13615, - "line_end": 13618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_402", - "name": "function_402", - "symbol_type": "Function", - "file_path": "", - "line_start": 13621, - "line_end": 13624, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_403", - "name": "function_403", - "symbol_type": "Function", - "file_path": "", - "line_start": 13627, - "line_end": 13630, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_404", - "name": "function_404", - "symbol_type": "Function", - "file_path": "", - "line_start": 13633, - "line_end": 13636, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_405", - "name": "function_405", - "symbol_type": "Function", - "file_path": "", - "line_start": 13639, - "line_end": 13642, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_406", - "name": "function_406", - "symbol_type": "Function", - "file_path": "", - "line_start": 13645, - "line_end": 13648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_407", - "name": "function_407", - "symbol_type": "Function", - "file_path": "", - "line_start": 13651, - "line_end": 13654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_408", - "name": "function_408", - "symbol_type": "Function", - "file_path": "", - "line_start": 13657, - "line_end": 13661, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_409", - "name": "function_409", - "symbol_type": "Function", - "file_path": "", - "line_start": 13664, - "line_end": 13668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_410", - "name": "function_410", - "symbol_type": "Function", - "file_path": "", - "line_start": 13711, - "line_end": 13729, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_411", - "name": "function_411", - "symbol_type": "Function", - "file_path": "", - "line_start": 13731, - "line_end": 13735, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13743, - "line_end": 13745, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 13749, - "line_end": 13757, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_414", - "name": "function_414", - "symbol_type": "Function", - "file_path": "", - "line_start": 13762, - "line_end": 13765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_415", - "name": "function_415", - "symbol_type": "Function", - "file_path": "", - "line_start": 13770, - "line_end": 13774, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_416", - "name": "function_416", - "symbol_type": "Function", - "file_path": "", - "line_start": 13779, - "line_end": 13785, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_417", - "name": "function_417", - "symbol_type": "Function", - "file_path": "", - "line_start": 13789, - "line_end": 13793, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_418", - "name": "function_418", - "symbol_type": "Function", - "file_path": "", - "line_start": 13797, - "line_end": 13800, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_419", - "name": "function_419", - "symbol_type": "Function", - "file_path": "", - "line_start": 13804, - "line_end": 13808, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_420", - "name": "function_420", - "symbol_type": "Function", - "file_path": "", - "line_start": 13812, - "line_end": 13815, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_421", - "name": "function_421", - "symbol_type": "Function", - "file_path": "", - "line_start": 13819, - "line_end": 13822, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13826, - "line_end": 13836, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13840, - "line_end": 13848, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_424", - "name": "function_424", - "symbol_type": "Function", - "file_path": "", - "line_start": 13852, - "line_end": 13860, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13864, - "line_end": 13867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13871, - "line_end": 13874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 13878, - "line_end": 13881, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_428", - "name": "function_428", - "symbol_type": "Function", - "file_path": "", - "line_start": 13955, - "line_end": 14013, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_429", - "name": "function_429", - "symbol_type": "Function", - "file_path": "", - "line_start": 14035, - "line_end": 14094, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_430", - "name": "function_430", - "symbol_type": "Function", - "file_path": "", - "line_start": 14103, - "line_end": 14145, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_431", - "name": "function_431", - "symbol_type": "Function", - "file_path": "", - "line_start": 14161, - "line_end": 14201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_432", - "name": "function_432", - "symbol_type": "Function", - "file_path": "", - "line_start": 14210, - "line_end": 14252, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 14259, - "line_end": 14336, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 14347, - "line_end": 14405, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_435", - "name": "function_435", - "symbol_type": "Function", - "file_path": "", - "line_start": 14535, - "line_end": 14538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_436", - "name": "function_436", - "symbol_type": "Function", - "file_path": "", - "line_start": 14543, - "line_end": 14546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_437", - "name": "function_437", - "symbol_type": "Function", - "file_path": "", - "line_start": 14550, - "line_end": 14553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_438", - "name": "function_438", - "symbol_type": "Function", - "file_path": "", - "line_start": 14612, - "line_end": 14616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_439", - "name": "function_439", - "symbol_type": "Function", - "file_path": "", - "line_start": 14621, - "line_end": 14625, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_440", - "name": "function_440", - "symbol_type": "Function", - "file_path": "", - "line_start": 14630, - "line_end": 14634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_441", - "name": "function_441", - "symbol_type": "Function", - "file_path": "", - "line_start": 14637, - "line_end": 14641, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_442", - "name": "function_442", - "symbol_type": "Function", - "file_path": "", - "line_start": 14646, - "line_end": 14650, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_443", - "name": "function_443", - "symbol_type": "Function", - "file_path": "", - "line_start": 14655, - "line_end": 14659, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_444", - "name": "function_444", - "symbol_type": "Function", - "file_path": "", - "line_start": 14662, - "line_end": 14666, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_445", - "name": "function_445", - "symbol_type": "Function", - "file_path": "", - "line_start": 14690, - "line_end": 14750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14700, - "line_end": 14702, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14704, - "line_end": 14706, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14708, - "line_end": 14710, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14715, - "line_end": 14717, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14720, - "line_end": 14720, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14721, - "line_end": 14721, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_452", - "name": "function_452", - "symbol_type": "Function", - "file_path": "", - "line_start": 14722, - "line_end": 14722, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_453", - "name": "function_453", - "symbol_type": "Function", - "file_path": "", - "line_start": 14723, - "line_end": 14723, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_454", - "name": "function_454", - "symbol_type": "Function", - "file_path": "", - "line_start": 14724, - "line_end": 14724, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_455", - "name": "function_455", - "symbol_type": "Function", - "file_path": "", - "line_start": 14726, - "line_end": 14733, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_456", - "name": "function_456", - "symbol_type": "Function", - "file_path": "", - "line_start": 14735, - "line_end": 14738, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_457", - "name": "function_457", - "symbol_type": "Function", - "file_path": "", - "line_start": 14740, - "line_end": 14743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_458", - "name": "function_458", - "symbol_type": "Function", - "file_path": "", - "line_start": 14815, - "line_end": 14936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_459", - "name": "function_459", - "symbol_type": "Function", - "file_path": "", - "line_start": 14824, - "line_end": 14824, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14826, - "line_end": 14826, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14827, - "line_end": 14827, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14828, - "line_end": 14828, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_463", - "name": "function_463", - "symbol_type": "Function", - "file_path": "", - "line_start": 14829, - "line_end": 14829, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_464", - "name": "function_464", - "symbol_type": "Function", - "file_path": "", - "line_start": 14830, - "line_end": 14830, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14842, - "line_end": 14844, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_466", - "name": "function_466", - "symbol_type": "Function", - "file_path": "", - "line_start": 14846, - "line_end": 14849, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_467", - "name": "function_467", - "symbol_type": "Function", - "file_path": "", - "line_start": 14851, - "line_end": 14855, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14867, - "line_end": 14869, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_469", - "name": "function_469", - "symbol_type": "Function", - "file_path": "", - "line_start": 14871, - "line_end": 14874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_470", - "name": "function_470", - "symbol_type": "Function", - "file_path": "", - "line_start": 14876, - "line_end": 14880, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14892, - "line_end": 14894, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_472", - "name": "function_472", - "symbol_type": "Function", - "file_path": "", - "line_start": 14896, - "line_end": 14899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_473", - "name": "function_473", - "symbol_type": "Function", - "file_path": "", - "line_start": 14901, - "line_end": 14905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14916, - "line_end": 14917, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14920, - "line_end": 14921, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14924, - "line_end": 14925, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_477", - "name": "function_477", - "symbol_type": "Function", - "file_path": "", - "line_start": 14927, - "line_end": 14930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_478", - "name": "function_478", - "symbol_type": "Function", - "file_path": "", - "line_start": 14937, - "line_end": 16752, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 14966, - "line_end": 14969, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_480", - "name": "function_480", - "symbol_type": "Function", - "file_path": "", - "line_start": 14975, - "line_end": 14999, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_481", - "name": "function_481", - "symbol_type": "Function", - "file_path": "", - "line_start": 15004, - "line_end": 15323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_482", - "name": "function_482", - "symbol_type": "Function", - "file_path": "", - "line_start": 15328, - "line_end": 15645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_483", - "name": "function_483", - "symbol_type": "Function", - "file_path": "", - "line_start": 15654, - "line_end": 15864, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_484", - "name": "function_484", - "symbol_type": "Function", - "file_path": "", - "line_start": 15875, - "line_end": 15885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_485", - "name": "function_485", - "symbol_type": "Function", - "file_path": "", - "line_start": 15890, - "line_end": 15897, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_486", - "name": "function_486", - "symbol_type": "Function", - "file_path": "", - "line_start": 15902, - "line_end": 15907, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_487", - "name": "function_487", - "symbol_type": "Function", - "file_path": "", - "line_start": 15912, - "line_end": 15917, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_488", - "name": "function_488", - "symbol_type": "Function", - "file_path": "", - "line_start": 15922, - "line_end": 15925, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_489", - "name": "function_489", - "symbol_type": "Function", - "file_path": "", - "line_start": 15930, - "line_end": 15939, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_490", - "name": "function_490", - "symbol_type": "Function", - "file_path": "", - "line_start": 15944, - "line_end": 15947, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_491", - "name": "function_491", - "symbol_type": "Function", - "file_path": "", - "line_start": 15952, - "line_end": 15957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_492", - "name": "function_492", - "symbol_type": "Function", - "file_path": "", - "line_start": 15962, - "line_end": 15975, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_493", - "name": "function_493", - "symbol_type": "Function", - "file_path": "", - "line_start": 15980, - "line_end": 15985, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_494", - "name": "function_494", - "symbol_type": "Function", - "file_path": "", - "line_start": 15990, - "line_end": 16007, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_495", - "name": "function_495", - "symbol_type": "Function", - "file_path": "", - "line_start": 16012, - "line_end": 16017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_496", - "name": "function_496", - "symbol_type": "Function", - "file_path": "", - "line_start": 16022, - "line_end": 16032, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_497", - "name": "function_497", - "symbol_type": "Function", - "file_path": "", - "line_start": 16037, - "line_end": 16040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_498", - "name": "function_498", - "symbol_type": "Function", - "file_path": "", - "line_start": 16045, - "line_end": 16059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_499", - "name": "function_499", - "symbol_type": "Function", - "file_path": "", - "line_start": 16064, - "line_end": 16073, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_500", - "name": "function_500", - "symbol_type": "Function", - "file_path": "", - "line_start": 16079, - "line_end": 16119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_501", - "name": "function_501", - "symbol_type": "Function", - "file_path": "", - "line_start": 16127, - "line_end": 16166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_502", - "name": "function_502", - "symbol_type": "Function", - "file_path": "", - "line_start": 16174, - "line_end": 16183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_503", - "name": "function_503", - "symbol_type": "Function", - "file_path": "", - "line_start": 16189, - "line_end": 16199, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_504", - "name": "function_504", - "symbol_type": "Function", - "file_path": "", - "line_start": 16205, - "line_end": 16208, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_505", - "name": "function_505", - "symbol_type": "Function", - "file_path": "", - "line_start": 16210, - "line_end": 16213, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_506", - "name": "function_506", - "symbol_type": "Function", - "file_path": "", - "line_start": 16219, - "line_end": 16222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_507", - "name": "function_507", - "symbol_type": "Function", - "file_path": "", - "line_start": 16224, - "line_end": 16227, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16236, - "line_end": 16245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16250, - "line_end": 16332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16338, - "line_end": 16414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_511", - "name": "function_511", - "symbol_type": "Function", - "file_path": "", - "line_start": 16419, - "line_end": 16518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_512", - "name": "function_512", - "symbol_type": "Function", - "file_path": "", - "line_start": 16520, - "line_end": 16523, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_513", - "name": "function_513", - "symbol_type": "Function", - "file_path": "", - "line_start": 16525, - "line_end": 16528, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_514", - "name": "function_514", - "symbol_type": "Function", - "file_path": "", - "line_start": 16533, - "line_end": 16640, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 16660, - "line_end": 16674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_516", - "name": "function_516", - "symbol_type": "Function", - "file_path": "", - "line_start": 16676, - "line_end": 16701, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16710, - "line_end": 16713, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16717, - "line_end": 16724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16728, - "line_end": 16731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16739, - "line_end": 16742, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_521", - "name": "function_521", - "symbol_type": "Function", - "file_path": "", - "line_start": 16804, - "line_end": 17898, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 16831, - "line_end": 16838, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 16847, - "line_end": 16847, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_524", - "name": "function_524", - "symbol_type": "Function", - "file_path": "", - "line_start": 16853, - "line_end": 16859, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_525", - "name": "function_525", - "symbol_type": "Function", - "file_path": "", - "line_start": 16865, - "line_end": 16924, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_526", - "name": "function_526", - "symbol_type": "Function", - "file_path": "", - "line_start": 16930, - "line_end": 16941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_527", - "name": "function_527", - "symbol_type": "Function", - "file_path": "", - "line_start": 16947, - "line_end": 16955, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 16972, - "line_end": 17037, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 17111, - "line_end": 17269, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 17275, - "line_end": 17327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 17329, - "line_end": 17364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 17370, - "line_end": 17603, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17611, - "line_end": 17662, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_534", - "name": "function_534", - "symbol_type": "Function", - "file_path": "", - "line_start": 17670, - "line_end": 17702, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_535", - "name": "function_535", - "symbol_type": "Function", - "file_path": "", - "line_start": 17710, - "line_end": 17750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_536", - "name": "function_536", - "symbol_type": "Function", - "file_path": "", - "line_start": 17762, - "line_end": 17831, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_537", - "name": "function_537", - "symbol_type": "Function", - "file_path": "", - "line_start": 17901, - "line_end": 18554, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17951, - "line_end": 17960, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17963, - "line_end": 17963, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_540", - "name": "function_540", - "symbol_type": "Function", - "file_path": "", - "line_start": 17964, - "line_end": 17964, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 17965, - "line_end": 17965, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_542", - "name": "function_542", - "symbol_type": "Function", - "file_path": "", - "line_start": 17966, - "line_end": 17966, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_543", - "name": "function_543", - "symbol_type": "Function", - "file_path": "", - "line_start": 17967, - "line_end": 17967, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_544", - "name": "function_544", - "symbol_type": "Function", - "file_path": "", - "line_start": 17991, - "line_end": 18258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 18289, - "line_end": 18470, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 18561, - "line_end": 18568, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18572, - "line_end": 18575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18578, - "line_end": 18581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18598, - "line_end": 18673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18683, - "line_end": 18702, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18704, - "line_end": 18710, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18712, - "line_end": 18761, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 18784, - "line_end": 18817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18824, - "line_end": 18828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18839, - "line_end": 18843, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18926, - "line_end": 18926, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18927, - "line_end": 18927, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18929, - "line_end": 18930, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 18931, - "line_end": 18932, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18934, - "line_end": 18945, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 18949, - "line_end": 18960, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_562", - "name": "function_562", - "symbol_type": "Function", - "file_path": "", - "line_start": 18962, - "line_end": 18965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_563", - "name": "function_563", - "symbol_type": "Function", - "file_path": "", - "line_start": 18969, - "line_end": 18972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_564", - "name": "function_564", - "symbol_type": "Function", - "file_path": "", - "line_start": 18974, - "line_end": 18977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_565", - "name": "function_565", - "symbol_type": "Function", - "file_path": "", - "line_start": 18981, - "line_end": 18984, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_566", - "name": "function_566", - "symbol_type": "Function", - "file_path": "", - "line_start": 18986, - "line_end": 18997, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_567", - "name": "function_567", - "symbol_type": "Function", - "file_path": "", - "line_start": 19001, - "line_end": 19012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_568", - "name": "function_568", - "symbol_type": "Function", - "file_path": "", - "line_start": 19014, - "line_end": 19025, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_569", - "name": "function_569", - "symbol_type": "Function", - "file_path": "", - "line_start": 19029, - "line_end": 19040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19042, - "line_end": 19059, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19063, - "line_end": 19080, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19082, - "line_end": 19085, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19087, - "line_end": 19138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19140, - "line_end": 19150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19154, - "line_end": 19164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19166, - "line_end": 19176, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19180, - "line_end": 19190, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19192, - "line_end": 19202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19204, - "line_end": 19207, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19209, - "line_end": 19220, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19227, - "line_end": 19233, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_582", - "name": "function_582", - "symbol_type": "Function", - "file_path": "", - "line_start": 19252, - "line_end": 19829, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 19306, - "line_end": 19315, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 19416, - "line_end": 19419, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 19423, - "line_end": 19485, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_586", - "name": "function_586", - "symbol_type": "Function", - "file_path": "", - "line_start": 19551, - "line_end": 19569, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19621, - "line_end": 19621, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19623, - "line_end": 19623, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19625, - "line_end": 19625, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19627, - "line_end": 19627, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19629, - "line_end": 19629, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19631, - "line_end": 19700, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19703, - "line_end": 19703, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19706, - "line_end": 19706, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19709, - "line_end": 19709, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19712, - "line_end": 19712, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19715, - "line_end": 19715, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19718, - "line_end": 19718, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19721, - "line_end": 19721, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19724, - "line_end": 19724, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19727, - "line_end": 19727, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19730, - "line_end": 19730, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 19732, - "line_end": 19828, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 19866, - "line_end": 19866, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19871, - "line_end": 19906, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 19908, - "line_end": 19919, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 19921, - "line_end": 19957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19983, - "line_end": 19987, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 19991, - "line_end": 19995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20003, - "line_end": 20010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20017, - "line_end": 20066, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20070, - "line_end": 20121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20125, - "line_end": 20132, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20136, - "line_end": 20143, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20147, - "line_end": 20154, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20158, - "line_end": 20165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20169, - "line_end": 20173, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20177, - "line_end": 20181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20185, - "line_end": 20191, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20198, - "line_end": 20298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20308, - "line_end": 20308, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20312, - "line_end": 20376, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20380, - "line_end": 20393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_624", - "name": "function_624", - "symbol_type": "Function", - "file_path": "", - "line_start": 20397, - "line_end": 20414, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_625", - "name": "function_625", - "symbol_type": "Function", - "file_path": "", - "line_start": 20418, - "line_end": 20422, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 20459, - "line_end": 20462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 20466, - "line_end": 20469, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 20473, - "line_end": 20476, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 20480, - "line_end": 20483, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 20487, - "line_end": 20490, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 20494, - "line_end": 20497, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 20501, - "line_end": 20504, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 20508, - "line_end": 20511, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 20515, - "line_end": 20518, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20522, - "line_end": 20525, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20529, - "line_end": 20532, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 20536, - "line_end": 20539, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20543, - "line_end": 20546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 20550, - "line_end": 20553, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_640", - "name": "function_640", - "symbol_type": "Function", - "file_path": "", - "line_start": 20557, - "line_end": 20560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21113, - "line_end": 21117, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21127, - "line_end": 21141, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21136, - "line_end": 21140, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21150, - "line_end": 21164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21170, - "line_end": 21184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21188, - "line_end": 21202, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21208, - "line_end": 21222, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_648", - "name": "function_648", - "symbol_type": "Function", - "file_path": "", - "line_start": 21226, - "line_end": 21268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_649", - "name": "function_649", - "symbol_type": "Function", - "file_path": "", - "line_start": 21272, - "line_end": 21281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_650", - "name": "function_650", - "symbol_type": "Function", - "file_path": "", - "line_start": 21285, - "line_end": 21303, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_651", - "name": "function_651", - "symbol_type": "Function", - "file_path": "", - "line_start": 21307, - "line_end": 21318, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_652", - "name": "function_652", - "symbol_type": "Function", - "file_path": "", - "line_start": 21323, - "line_end": 21326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_653", - "name": "function_653", - "symbol_type": "Function", - "file_path": "", - "line_start": 21329, - "line_end": 21332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_654", - "name": "function_654", - "symbol_type": "Function", - "file_path": "", - "line_start": 21338, - "line_end": 21356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_655", - "name": "function_655", - "symbol_type": "Function", - "file_path": "", - "line_start": 21362, - "line_end": 21373, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21417, - "line_end": 21433, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21443, - "line_end": 21459, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21470, - "line_end": 21486, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21493, - "line_end": 21507, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21503, - "line_end": 21506, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21518, - "line_end": 21532, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21528, - "line_end": 21531, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21542, - "line_end": 21545, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21553, - "line_end": 21556, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21560, - "line_end": 21563, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21567, - "line_end": 21570, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21574, - "line_end": 21579, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21583, - "line_end": 21588, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21595, - "line_end": 21658, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21665, - "line_end": 21731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21733, - "line_end": 21745, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21749, - "line_end": 21764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21781, - "line_end": 21784, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21788, - "line_end": 21804, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21818, - "line_end": 21828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21832, - "line_end": 21842, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21848, - "line_end": 21858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21864, - "line_end": 21874, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21878, - "line_end": 21882, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 21888, - "line_end": 21892, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21896, - "line_end": 21899, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21905, - "line_end": 21908, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21912, - "line_end": 21915, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 21919, - "line_end": 21922, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21936, - "line_end": 21941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21945, - "line_end": 21948, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21952, - "line_end": 21957, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21961, - "line_end": 21966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 21970, - "line_end": 21973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 21977, - "line_end": 21982, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21986, - "line_end": 21989, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 21993, - "line_end": 21996, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22000, - "line_end": 22003, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22007, - "line_end": 22010, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22014, - "line_end": 22017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22021, - "line_end": 22024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22033, - "line_end": 22036, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22044, - "line_end": 22047, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22051, - "line_end": 22054, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22058, - "line_end": 22061, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 22075, - "line_end": 22110, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22114, - "line_end": 22149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22153, - "line_end": 22183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 22197, - "line_end": 22254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22258, - "line_end": 22279, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_706", - "name": "function_706", - "symbol_type": "Function", - "file_path": "", - "line_start": 22283, - "line_end": 22287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22291, - "line_end": 22311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_708", - "name": "function_708", - "symbol_type": "Function", - "file_path": "", - "line_start": 22315, - "line_end": 22319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22323, - "line_end": 22342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_710", - "name": "function_710", - "symbol_type": "Function", - "file_path": "", - "line_start": 22346, - "line_end": 22350, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22354, - "line_end": 22366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_712", - "name": "function_712", - "symbol_type": "Function", - "file_path": "", - "line_start": 22370, - "line_end": 22374, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22379, - "line_end": 22399, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 22404, - "line_end": 22430, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 22436, - "line_end": 22451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22455, - "line_end": 22471, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22475, - "line_end": 22478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22482, - "line_end": 22498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22502, - "line_end": 22529, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22533, - "line_end": 22549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22553, - "line_end": 22574, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22578, - "line_end": 22581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22585, - "line_end": 22628, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22632, - "line_end": 22645, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22649, - "line_end": 22657, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22661, - "line_end": 22673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22677, - "line_end": 22689, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22693, - "line_end": 22705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22709, - "line_end": 22721, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22725, - "line_end": 22737, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 22814, - "line_end": 22817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 22843, - "line_end": 22846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_733", - "name": "function_733", - "symbol_type": "Function", - "file_path": "", - "line_start": 22852, - "line_end": 22863, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_734", - "name": "function_734", - "symbol_type": "Function", - "file_path": "", - "line_start": 22869, - "line_end": 22872, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_735", - "name": "function_735", - "symbol_type": "Function", - "file_path": "", - "line_start": 22876, - "line_end": 22883, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_736", - "name": "function_736", - "symbol_type": "Function", - "file_path": "", - "line_start": 22887, - "line_end": 22896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_737", - "name": "function_737", - "symbol_type": "Function", - "file_path": "", - "line_start": 22902, - "line_end": 22905, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_738", - "name": "function_738", - "symbol_type": "Function", - "file_path": "", - "line_start": 22914, - "line_end": 22921, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_739", - "name": "function_739", - "symbol_type": "Function", - "file_path": "", - "line_start": 22927, - "line_end": 22930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_740", - "name": "function_740", - "symbol_type": "Function", - "file_path": "", - "line_start": 22935, - "line_end": 22942, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_741", - "name": "function_741", - "symbol_type": "Function", - "file_path": "", - "line_start": 22948, - "line_end": 22951, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_742", - "name": "function_742", - "symbol_type": "Function", - "file_path": "", - "line_start": 22956, - "line_end": 22966, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_743", - "name": "function_743", - "symbol_type": "Function", - "file_path": "", - "line_start": 22972, - "line_end": 22975, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_744", - "name": "function_744", - "symbol_type": "Function", - "file_path": "", - "line_start": 22981, - "line_end": 22984, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_745", - "name": "function_745", - "symbol_type": "Function", - "file_path": "", - "line_start": 22988, - "line_end": 22995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_746", - "name": "function_746", - "symbol_type": "Function", - "file_path": "", - "line_start": 23001, - "line_end": 23004, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_747", - "name": "function_747", - "symbol_type": "Function", - "file_path": "", - "line_start": 23010, - "line_end": 23013, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_748", - "name": "function_748", - "symbol_type": "Function", - "file_path": "", - "line_start": 23017, - "line_end": 24113, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_749", - "name": "function_749", - "symbol_type": "Function", - "file_path": "", - "line_start": 23038, - "line_end": 23041, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_750", - "name": "function_750", - "symbol_type": "Function", - "file_path": "", - "line_start": 23045, - "line_end": 23052, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_751", - "name": "function_751", - "symbol_type": "Function", - "file_path": "", - "line_start": 23058, - "line_end": 23061, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_752", - "name": "function_752", - "symbol_type": "Function", - "file_path": "", - "line_start": 23067, - "line_end": 23070, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_753", - "name": "function_753", - "symbol_type": "Function", - "file_path": "", - "line_start": 23074, - "line_end": 23082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_754", - "name": "function_754", - "symbol_type": "Function", - "file_path": "", - "line_start": 23088, - "line_end": 23091, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_755", - "name": "function_755", - "symbol_type": "Function", - "file_path": "", - "line_start": 23097, - "line_end": 23100, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_756", - "name": "function_756", - "symbol_type": "Function", - "file_path": "", - "line_start": 23104, - "line_end": 23111, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_757", - "name": "function_757", - "symbol_type": "Function", - "file_path": "", - "line_start": 23117, - "line_end": 23120, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_758", - "name": "function_758", - "symbol_type": "Function", - "file_path": "", - "line_start": 23126, - "line_end": 23129, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_759", - "name": "function_759", - "symbol_type": "Function", - "file_path": "", - "line_start": 23145, - "line_end": 23158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23185, - "line_end": 23194, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23199, - "line_end": 23209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23213, - "line_end": 23221, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23226, - "line_end": 23230, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23235, - "line_end": 23239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23243, - "line_end": 23247, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23253, - "line_end": 23262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23268, - "line_end": 23277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23287, - "line_end": 23298, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_769", - "name": "function_769", - "symbol_type": "Function", - "file_path": "", - "line_start": 23328, - "line_end": 23353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23391, - "line_end": 23394, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23398, - "line_end": 23401, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23405, - "line_end": 23410, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23414, - "line_end": 23417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23421, - "line_end": 23424, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23428, - "line_end": 23435, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23439, - "line_end": 23443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23447, - "line_end": 23451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23455, - "line_end": 23462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23466, - "line_end": 23470, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23474, - "line_end": 23478, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23482, - "line_end": 23487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23491, - "line_end": 23494, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23498, - "line_end": 23501, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23506, - "line_end": 23517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23522, - "line_end": 23533, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23538, - "line_end": 23544, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23549, - "line_end": 23560, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23565, - "line_end": 23575, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23580, - "line_end": 23590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23595, - "line_end": 23600, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23604, - "line_end": 23614, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23619, - "line_end": 23629, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23634, - "line_end": 23644, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23649, - "line_end": 23654, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23658, - "line_end": 23668, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23674, - "line_end": 23684, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23689, - "line_end": 23699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23704, - "line_end": 23714, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23719, - "line_end": 23729, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23734, - "line_end": 23739, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23743, - "line_end": 23753, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_802", - "name": "function_802", - "symbol_type": "Function", - "file_path": "", - "line_start": 23765, - "line_end": 23768, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_803", - "name": "function_803", - "symbol_type": "Function", - "file_path": "", - "line_start": 23772, - "line_end": 23775, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_804", - "name": "function_804", - "symbol_type": "Function", - "file_path": "", - "line_start": 23779, - "line_end": 23782, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_805", - "name": "function_805", - "symbol_type": "Function", - "file_path": "", - "line_start": 23786, - "line_end": 23789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23793, - "line_end": 23796, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23800, - "line_end": 23803, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23807, - "line_end": 23810, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23814, - "line_end": 23817, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23821, - "line_end": 23826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23830, - "line_end": 23833, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 23846, - "line_end": 24112, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24117, - "line_end": 24122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 24126, - "line_end": 24257, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24269, - "line_end": 24293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_816", - "name": "function_816", - "symbol_type": "Function", - "file_path": "", - "line_start": 24300, - "line_end": 24304, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_817", - "name": "function_817", - "symbol_type": "Function", - "file_path": "", - "line_start": 24314, - "line_end": 24317, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_818", - "name": "function_818", - "symbol_type": "Function", - "file_path": "", - "line_start": 24322, - "line_end": 24325, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_819", - "name": "function_819", - "symbol_type": "Function", - "file_path": "", - "line_start": 24329, - "line_end": 24383, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_820", - "name": "function_820", - "symbol_type": "Function", - "file_path": "", - "line_start": 24340, - "line_end": 24347, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_821", - "name": "function_821", - "symbol_type": "Function", - "file_path": "", - "line_start": 24343, - "line_end": 24346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_822", - "name": "function_822", - "symbol_type": "Function", - "file_path": "", - "line_start": 24357, - "line_end": 24365, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 24373, - "line_end": 24379, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 252, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 264, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 278, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 2798, - "line_end": 2798, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 3019, - "line_end": 3033, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 3106, - "line_end": 3113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 3127, - "line_end": 3127, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 3131, - "line_end": 3134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 3137, - "line_end": 3140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 3145, - "line_end": 3149, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 3152, - "line_end": 3155, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 3190, - "line_end": 3190, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 3191, - "line_end": 3191, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 3195, - "line_end": 3198, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 3255, - "line_end": 3255, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 3258, - "line_end": 3268, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3273, - "line_end": 3275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 3278, - "line_end": 3281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 3284, - "line_end": 3291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 3398, - "line_end": 3398, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3409, - "line_end": 3409, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3445, - "line_end": 3445, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 3454, - "line_end": 3458, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3465, - "line_end": 3465, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3468, - "line_end": 3468, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 3471, - "line_end": 3471, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3509, - "line_end": 3509, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3516, - "line_end": 3519, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 3522, - "line_end": 3529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3534, - "line_end": 3534, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 3537, - "line_end": 3544, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3549, - "line_end": 3549, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 3552, - "line_end": 3559, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 3565, - "line_end": 3565, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 3569, - "line_end": 3575, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 3585, - "line_end": 3585, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 3586, - "line_end": 3586, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 3588, - "line_end": 3589, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 3592, - "line_end": 3592, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3598, - "line_end": 3598, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 3601, - "line_end": 3602, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_43", - "name": "class_43", - "symbol_type": "Class", - "file_path": "", - "line_start": 3605, - "line_end": 3606, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_44", - "name": "class_44", - "symbol_type": "Class", - "file_path": "", - "line_start": 3609, - "line_end": 3610, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 3613, - "line_end": 3614, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3618, - "line_end": 3618, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 3621, - "line_end": 3621, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_48", - "name": "class_48", - "symbol_type": "Class", - "file_path": "", - "line_start": 3624, - "line_end": 3624, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_49", - "name": "class_49", - "symbol_type": "Class", - "file_path": "", - "line_start": 3627, - "line_end": 3627, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_50", - "name": "class_50", - "symbol_type": "Class", - "file_path": "", - "line_start": 3630, - "line_end": 3630, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3634, - "line_end": 3634, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 3637, - "line_end": 3649, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 3652, - "line_end": 3668, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3681, - "line_end": 3681, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 3684, - "line_end": 3684, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3688, - "line_end": 3688, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_57", - "name": "class_57", - "symbol_type": "Class", - "file_path": "", - "line_start": 3691, - "line_end": 3704, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3707, - "line_end": 3708, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3712, - "line_end": 3712, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 3715, - "line_end": 3736, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3739, - "line_end": 3741, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3744, - "line_end": 3748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3751, - "line_end": 3765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3768, - "line_end": 3768, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_65", - "name": "class_65", - "symbol_type": "Class", - "file_path": "", - "line_start": 3771, - "line_end": 3783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3786, - "line_end": 3787, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3790, - "line_end": 3790, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 3793, - "line_end": 3797, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_69", - "name": "class_69", - "symbol_type": "Class", - "file_path": "", - "line_start": 3800, - "line_end": 3827, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3830, - "line_end": 3831, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3835, - "line_end": 3835, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 3838, - "line_end": 3853, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3856, - "line_end": 3858, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3861, - "line_end": 3861, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_75", - "name": "class_75", - "symbol_type": "Class", - "file_path": "", - "line_start": 3864, - "line_end": 3870, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3873, - "line_end": 3874, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 3877, - "line_end": 3877, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_78", - "name": "class_78", - "symbol_type": "Class", - "file_path": "", - "line_start": 3880, - "line_end": 3880, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3883, - "line_end": 3883, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_80", - "name": "class_80", - "symbol_type": "Class", - "file_path": "", - "line_start": 3886, - "line_end": 3886, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_81", - "name": "class_81", - "symbol_type": "Class", - "file_path": "", - "line_start": 3889, - "line_end": 3890, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3894, - "line_end": 3894, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_83", - "name": "class_83", - "symbol_type": "Class", - "file_path": "", - "line_start": 3897, - "line_end": 3897, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3904, - "line_end": 3904, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_85", - "name": "class_85", - "symbol_type": "Class", - "file_path": "", - "line_start": 3907, - "line_end": 3910, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3960, - "line_end": 3973, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 3964, - "line_end": 3967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 4010, - "line_end": 4010, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_89", - "name": "class_89", - "symbol_type": "Class", - "file_path": "", - "line_start": 4013, - "line_end": 4020, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_90", - "name": "class_90", - "symbol_type": "Class", - "file_path": "", - "line_start": 4023, - "line_end": 4030, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_91", - "name": "class_91", - "symbol_type": "Class", - "file_path": "", - "line_start": 4033, - "line_end": 4040, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_92", - "name": "class_92", - "symbol_type": "Class", - "file_path": "", - "line_start": 4044, - "line_end": 4052, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 4057, - "line_end": 4057, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_94", - "name": "class_94", - "symbol_type": "Class", - "file_path": "", - "line_start": 4060, - "line_end": 4066, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_95", - "name": "class_95", - "symbol_type": "Class", - "file_path": "", - "line_start": 4069, - "line_end": 4075, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 4109, - "line_end": 4109, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 4131, - "line_end": 4131, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exception", - "name": "exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 4300, - "line_end": 4394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4398, - "line_end": 4447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 4451, - "line_end": 4465, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4469, - "line_end": 4482, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 4486, - "line_end": 4499, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4503, - "line_end": 4516, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 4544, - "line_end": 4544, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5027, - "line_end": 5036, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 5114, - "line_end": 5232, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 5235, - "line_end": 5265, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_108", - "name": "class_108", - "symbol_type": "Class", - "file_path": "", - "line_start": 5300, - "line_end": 5301, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_109", - "name": "class_109", - "symbol_type": "Class", - "file_path": "", - "line_start": 5304, - "line_end": 5310, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 5348, - "line_end": 5348, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_111", - "name": "class_111", - "symbol_type": "Class", - "file_path": "", - "line_start": 5351, - "line_end": 5361, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_112", - "name": "class_112", - "symbol_type": "Class", - "file_path": "", - "line_start": 5364, - "line_end": 5394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_113", - "name": "class_113", - "symbol_type": "Class", - "file_path": "", - "line_start": 5397, - "line_end": 5416, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_114", - "name": "class_114", - "symbol_type": "Class", - "file_path": "", - "line_start": 5419, - "line_end": 5429, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_115", - "name": "class_115", - "symbol_type": "Class", - "file_path": "", - "line_start": 5432, - "line_end": 5442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_116", - "name": "class_116", - "symbol_type": "Class", - "file_path": "", - "line_start": 5445, - "line_end": 5455, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_117", - "name": "class_117", - "symbol_type": "Class", - "file_path": "", - "line_start": 5458, - "line_end": 5525, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_118", - "name": "class_118", - "symbol_type": "Class", - "file_path": "", - "line_start": 5528, - "line_end": 5563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5728, - "line_end": 5735, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_adl_serializer", - "name": "adl_serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 5761, - "line_end": 5791, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6153, - "line_end": 6202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6208, - "line_end": 6240, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 6244, - "line_end": 6244, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_124", - "name": "class_124", - "symbol_type": "Class", - "file_path": "", - "line_start": 6247, - "line_end": 6302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_125", - "name": "class_125", - "symbol_type": "Class", - "file_path": "", - "line_start": 6305, - "line_end": 6364, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6368, - "line_end": 6409, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6413, - "line_end": 6423, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 6426, - "line_end": 6433, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_129", - "name": "class_129", - "symbol_type": "Class", - "file_path": "", - "line_start": 6436, - "line_end": 6447, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6468, - "line_end": 6468, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_131", - "name": "class_131", - "symbol_type": "Class", - "file_path": "", - "line_start": 6471, - "line_end": 6480, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6534, - "line_end": 6560, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 6913, - "line_end": 7217, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 7220, - "line_end": 7293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 7335, - "line_end": 7405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 7412, - "line_end": 8611, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 9014, - "line_end": 9042, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 9045, - "line_end": 9096, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 9141, - "line_end": 12076, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 12158, - "line_end": 12602, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 12650, - "line_end": 12750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 12766, - "line_end": 12774, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 12813, - "line_end": 12813, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 12814, - "line_end": 12814, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 12833, - "line_end": 13021, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 13586, - "line_end": 13669, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 14695, - "line_end": 14748, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14820, - "line_end": 14831, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14839, - "line_end": 14859, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14864, - "line_end": 14884, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14889, - "line_end": 14909, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14912, - "line_end": 14934, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 14954, - "line_end": 16750, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 16840, - "line_end": 16956, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 16958, - "line_end": 16963, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 17097, - "line_end": 17102, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 17935, - "line_end": 18471, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_158", - "name": "class_158", - "symbol_type": "Class", - "file_path": "", - "line_start": 24351, - "line_end": 24366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "json_fwd.hpp", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-src/single_include/nlohmann/json_fwd.hpp", - "language": "cpp", - "size_bytes": 6268, - "total_lines": 175, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.013087502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 0, - "column_end": 18, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler_depend.ts", - "path": "./development/nyamesh/src/build-nyamesh4-windows/_deps/json-subbuild/CMakeFiles/json-populate.dir/compiler_depend.ts", - "language": "typescript", - "size_bytes": 122, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.024790580Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LightMessaging.cpp", - "path": "./development/nyamesh/src/core/LightMessaging.cpp", - "language": "cpp", - "size_bytes": 15218, - "total_lines": 465, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.050680927Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_InternalMessage", - "name": "InternalMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 328, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 330, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 337, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 344, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 349, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 354, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 358, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 362, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 366, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 390, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 394, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 404, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 416, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 424, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 432, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 440, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 451, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 463, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_InternalMessage", - "name": "InternalMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_1", - "name": "class_1", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 320, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "LightMessaging.h", - "path": "./development/nyamesh/src/core/LightMessaging.h", - "language": "c", - "size_bytes": 9778, - "total_lines": 314, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.052991479Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_LightOptions", - "name": "LightOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LightOptions", - "name": "LightOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 44, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LightMessagingBus", - "name": "LightMessagingBus", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_LightMessagingBus", - "name": "LightMessagingBus", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 4, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subscribeMessage", - "name": "subscribeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendMessageAsync", - "name": "sendMessageAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subscribe", - "name": "subscribe", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_LightOptions", - "name": "LightOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LightMessagingBus", - "name": "LightMessagingBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 198, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LightMessagingFactory", - "name": "LightMessagingFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 228, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_GlobalConfig", - "name": "GlobalConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreMessagingHelper", - "name": "CoreMessagingHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 263, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh.cpp", - "path": "./development/nyamesh/src/core/nyamesh.cpp", - "language": "cpp", - "size_bytes": 26086, - "total_lines": 726, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.056864060Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 234, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 368, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 382, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 419, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 438, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 487, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 555, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 563, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 570, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 572, - "line_end": 638, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 705, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createNyaMesh", - "name": "createNyaMesh", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 712, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createNyaMeshNetwork", - "name": "createNyaMeshNetwork", - "symbol_type": "Function", - "file_path": "", - "line_start": 714, - "line_end": 724, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyamesh.h", - "path": "./development/nyamesh/src/core/nyamesh.h", - "language": "c", - "size_bytes": 10024, - "total_lines": 352, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.059439430Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SafeMessage", - "name": "SafeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SafeMessage", - "name": "SafeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 66, - "column_start": 4, - "column_end": 108, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 247, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_HandlerInfo", - "name": "HandlerInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 8, - "column_end": 112, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TransportInterface", - "name": "TransportInterface", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_InProcessTransport", - "name": "InProcessTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMesh2TransportAdapter", - "name": "NyaMesh2TransportAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SafeMessage", - "name": "SafeMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMesh", - "name": "NyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 332, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_HandlerInfo", - "name": "HandlerInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 263, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMeshHelpers.h", - "path": "./development/nyamesh/src/core/NyaMeshHelpers.h", - "language": "c", - "size_bytes": 8209, - "total_lines": 300, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.061588750Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SafeNodeHandle", - "name": "SafeNodeHandle", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 64, - "column_start": 4, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_IntentBuilder", - "name": "IntentBuilder", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_BatchOperationGuard", - "name": "BatchOperationGuard", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 149, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_routeIntent", - "name": "routeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createChild", - "name": "createChild", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_safeReparent", - "name": "safeReparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SafeNodeHandle", - "name": "SafeNodeHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IntentBuilder", - "name": "IntentBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Intent", - "name": "Intent", - "symbol_type": "Class", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BatchOperationGuard", - "name": "BatchOperationGuard", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ParentChildTransaction", - "name": "ParentChildTransaction", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 202, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Change", - "name": "Change", - "symbol_type": "Class", - "file_path": "", - "line_start": 167, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IntentRouter", - "name": "IntentRouter", - "symbol_type": "Class", - "file_path": "", - "line_start": 209, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TypicalUsageHelper", - "name": "TypicalUsageHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 242, - "line_end": 276, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_PerformanceHint", - "name": "PerformanceHint", - "symbol_type": "Class", - "file_path": "", - "line_start": 281, - "line_end": 298, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UltraLightCoreBase.cpp", - "path": "./development/nyamesh/src/core/UltraLightCoreBase.cpp", - "language": "cpp", - "size_bytes": 11079, - "total_lines": 351, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.064019304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Impl", - "name": "Impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 261, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 0, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 270, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 281, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 287, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 299, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 303, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 311, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 323, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_class_0", - "name": "class_0", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UltraLightCoreBase.h", - "path": "./development/nyamesh/src/core/UltraLightCoreBase.h", - "language": "c", - "size_bytes": 11140, - "total_lines": 379, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.066216830Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendMessage", - "name": "sendMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subscribeMessage", - "name": "subscribeMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sendMessageAsync", - "name": "sendMessageAsync", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subscribeIntent", - "name": "subscribeIntent", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_CoreMessagingHelper", - "name": "CoreMessagingHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LightMessagingBus", - "name": "LightMessagingBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_LightOptions", - "name": "LightOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UltraLightCoreBase", - "name": "UltraLightCoreBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreStatistics", - "name": "CoreStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Impl", - "name": "Impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 273, - "line_end": 273, - "column_start": 4, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreFactory", - "name": "CoreFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 347, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_GlobalConfig", - "name": "GlobalConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 335, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMeshDebugLogger.cpp", - "path": "./development/nyamesh/src/debug/NyaMeshDebugLogger.cpp", - "language": "cpp", - "size_bytes": 321, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.069237943Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMeshDebugLogger.h", - "path": "./development/nyamesh/src/debug/NyaMeshDebugLogger.h", - "language": "c", - "size_bytes": 7273, - "total_lines": 244, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.071215273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NyaMeshDebugLogger", - "name": "NyaMeshDebugLogger", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 239, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UnifiedDebugSystem.cpp", - "path": "./development/nyamesh/src/debug/UnifiedDebugSystem.cpp", - "language": "cpp", - "size_bytes": 2774, - "total_lines": 79, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.073025977Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "UnifiedDebugSystem.h", - "path": "./development/nyamesh/src/debug/UnifiedDebugSystem.h", - "language": "c", - "size_bytes": 2306, - "total_lines": 87, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.074636305Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 4, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 80, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_UnifiedDebugSystem", - "name": "UnifiedDebugSystem", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentCommonOptions.cpp", - "path": "./development/nyamesh/src/intents/IntentCommonOptions.cpp", - "language": "cpp", - "size_bytes": 2233, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.077537089Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentCommonOptions.h", - "path": "./development/nyamesh/src/intents/IntentCommonOptions.h", - "language": "c", - "size_bytes": 5104, - "total_lines": 168, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.079207160Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_IntentCommonOptions", - "name": "IntentCommonOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_IntentCommonOptions", - "name": "IntentCommonOptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_IntentCommonOptions", - "name": "IntentCommonOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_IntentInterpreter", - "name": "IntentInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 87, - "line_end": 166, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Recommendation", - "name": "Recommendation", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ISettingsCore.h", - "path": "./development/nyamesh/src/interfaces/ISettingsCore.h", - "language": "c", - "size_bytes": 12929, - "total_lines": 428, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.082429871Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 52, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsChangeNotification", - "name": "SettingsChangeNotification", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsSearchResult", - "name": "SettingsSearchResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsSearchResult", - "name": "SettingsSearchResult", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 134, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsChangeNotification", - "name": "SettingsChangeNotification", - "symbol_type": "Class", - "file_path": "", - "line_start": 113, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsSearchResult", - "name": "SettingsSearchResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 126, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ISettingsCore", - "name": "ISettingsCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 157, - "line_end": 371, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsStatistics", - "name": "SettingsStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 320, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsCoreConfig", - "name": "SettingsCoreConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 401, - "line_end": 410, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CoreMessages.cpp", - "path": "./development/nyamesh/src/messages/CoreMessages.cpp", - "language": "cpp", - "size_bytes": 429, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.085479022Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "CoreMessages.h", - "path": "./development/nyamesh/src/messages/CoreMessages.h", - "language": "c", - "size_bytes": 8995, - "total_lines": 332, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.087500532Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_SystemError", - "name": "SystemError", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SystemError", - "name": "SystemError", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 37, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SystemWarning", - "name": "SystemWarning", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SystemWarning", - "name": "SystemWarning", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 49, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SystemInfo", - "name": "SystemInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 59, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SystemInfo", - "name": "SystemInfo", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 61, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CoreInitialized", - "name": "CoreInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CoreInitialized", - "name": "CoreInitialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 73, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 91, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsGetRequest", - "name": "SettingsGetRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsGetRequest", - "name": "SettingsGetRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 105, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsGetResponse", - "name": "SettingsGetResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsSetRequest", - "name": "SettingsSetRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsSetRequest", - "name": "SettingsSetRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 129, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsSetResponse", - "name": "SettingsSetResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsChanged", - "name": "SettingsChanged", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_SettingsChanged", - "name": "SettingsChanged", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 154, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DrivesRequest", - "name": "DrivesRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DrivesRequest", - "name": "DrivesRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DrivesResponse", - "name": "DrivesResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 180, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DirectoryRequest", - "name": "DirectoryRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DirectoryRequest", - "name": "DirectoryRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 192, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_DirectoryResponse", - "name": "DirectoryResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileReadRequest", - "name": "FileReadRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 4, - "column_end": 32, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileReadRequest", - "name": "FileReadRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 218, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileReadResponse", - "name": "FileReadResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileWriteRequest", - "name": "FileWriteRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 243, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileWriteRequest", - "name": "FileWriteRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 245, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_FileWriteResponse", - "name": "FileWriteResponse", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_EditorRequest", - "name": "EditorRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_EditorRequest", - "name": "EditorRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 274, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_BufferCreateRequest", - "name": "BufferCreateRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 284, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_BufferCreateRequest", - "name": "BufferCreateRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 286, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TextChangeRequest", - "name": "TextChangeRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 297, - "column_start": 4, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_TextChangeRequest", - "name": "TextChangeRequest", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 299, - "column_start": 4, - "column_end": 52, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SystemError", - "name": "SystemError", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SystemWarning", - "name": "SystemWarning", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SystemInfo", - "name": "SystemInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CoreInitialized", - "name": "CoreInitialized", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsValue", - "name": "SettingsValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsGetRequest", - "name": "SettingsGetRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsGetResponse", - "name": "SettingsGetResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsSetRequest", - "name": "SettingsSetRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsSetResponse", - "name": "SettingsSetResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_SettingsChanged", - "name": "SettingsChanged", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DrivesRequest", - "name": "DrivesRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 164, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DrivesResponse", - "name": "DrivesResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DirectoryRequest", - "name": "DirectoryRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DirectoryResponse", - "name": "DirectoryResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 198, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileReadRequest", - "name": "FileReadRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 212, - "line_end": 219, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileReadResponse", - "name": "FileReadResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 224, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileWriteRequest", - "name": "FileWriteRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 238, - "line_end": 246, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_FileWriteResponse", - "name": "FileWriteResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 259, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_EditorRequest", - "name": "EditorRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_BufferCreateRequest", - "name": "BufferCreateRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 280, - "line_end": 287, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TextChangeRequest", - "name": "TextChangeRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 292, - "line_end": 300, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "IntentDefinitions_v22.h", - "path": "./development/nyamesh/src/messages/IntentDefinitions_v22.h", - "language": "c", - "size_bytes": 7499, - "total_lines": 198, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.089603681Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "P2PMessage.h", - "path": "./development/nyamesh/src/messaging/P2PMessage.h", - "language": "c", - "size_bytes": 2317, - "total_lines": 82, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.092673400Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 43, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nlohmann_json.hpp", - "path": "./development/nyamesh/src/nlohmann_json.hpp", - "language": "cpp", - "size_bytes": 919975, - "total_lines": 24765, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.171850285Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 257, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_nonesuch", - "name": "nonesuch", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 273, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 2840, - "line_end": 2936, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 2902, - "line_end": 2923, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 2930, - "line_end": 2933, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 2937, - "line_end": 3011, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_replace_substring", - "name": "replace_substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 2971, - "line_end": 2980, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_escape", - "name": "escape", - "symbol_type": "Function", - "file_path": "", - "line_start": 2990, - "line_end": 2995, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unescape", - "name": "unescape", - "symbol_type": "Function", - "file_path": "", - "line_start": 3005, - "line_end": 3009, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 3030, - "line_end": 3051, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 3045, - "line_end": 3048, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 3076, - "line_end": 3227, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 3125, - "line_end": 3128, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_make_array", - "name": "make_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 3222, - "line_end": 3225, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 3267, - "line_end": 3310, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 3438, - "line_end": 4207, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 3615, - "line_end": 3618, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 3620, - "line_end": 3623, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 3625, - "line_end": 3628, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 3639, - "line_end": 3642, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 3644, - "line_end": 3647, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 3649, - "line_end": 3652, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 4050, - "line_end": 4053, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_conditional_static_cast", - "name": "conditional_static_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 4056, - "line_end": 4059, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 4088, - "line_end": 4092, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 4098, - "line_end": 4102, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 4108, - "line_end": 4112, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 4118, - "line_end": 4123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 4134, - "line_end": 4137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 4143, - "line_end": 4146, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value_in_range_of", - "name": "value_in_range_of", - "symbol_type": "Function", - "file_path": "", - "line_start": 4150, - "line_end": 4153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_c_string", - "name": "is_c_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 4166, - "line_end": 4175, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_transparent", - "name": "is_transparent", - "symbol_type": "Function", - "file_path": "", - "line_start": 4194, - "line_end": 4197, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 4230, - "line_end": 4357, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4234, - "line_end": 4237, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4246, - "line_end": 4249, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4252, - "line_end": 4256, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_length", - "name": "concat_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 4259, - "line_end": 4262, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4265, - "line_end": 4266, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4312, - "line_end": 4316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4321, - "line_end": 4325, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4331, - "line_end": 4335, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat_into", - "name": "concat_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 4342, - "line_end": 4346, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_concat", - "name": "concat", - "symbol_type": "Function", - "file_path": "", - "line_start": 4349, - "line_end": 4355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_50", - "name": "function_50", - "symbol_type": "Function", - "file_path": "", - "line_start": 4358, - "line_end": 4589, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_51", - "name": "function_51", - "symbol_type": "Function", - "file_path": "", - "line_start": 4375, - "line_end": 4378, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_52", - "name": "function_52", - "symbol_type": "Function", - "file_path": "", - "line_start": 4384, - "line_end": 4385, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_53", - "name": "function_53", - "symbol_type": "Function", - "file_path": "", - "line_start": 4387, - "line_end": 4390, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_54", - "name": "function_54", - "symbol_type": "Function", - "file_path": "", - "line_start": 4392, - "line_end": 4395, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diagnostics", - "name": "diagnostics", - "symbol_type": "Function", - "file_path": "", - "line_start": 4398, - "line_end": 4460, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4482, - "line_end": 4487, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4490, - "line_end": 4496, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 4510, - "line_end": 4511, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_59", - "name": "function_59", - "symbol_type": "Function", - "file_path": "", - "line_start": 4513, - "line_end": 4517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4526, - "line_end": 4530, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_61", - "name": "function_61", - "symbol_type": "Function", - "file_path": "", - "line_start": 4533, - "line_end": 4535, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4544, - "line_end": 4548, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_63", - "name": "function_63", - "symbol_type": "Function", - "file_path": "", - "line_start": 4551, - "line_end": 4552, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4561, - "line_end": 4565, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_65", - "name": "function_65", - "symbol_type": "Function", - "file_path": "", - "line_start": 4568, - "line_end": 4569, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 4578, - "line_end": 4582, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_67", - "name": "function_67", - "symbol_type": "Function", - "file_path": "", - "line_start": 4585, - "line_end": 4586, - "column_start": 4, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_68", - "name": "function_68", - "symbol_type": "Function", - "file_path": "", - "line_start": 4590, - "line_end": 4617, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_69", - "name": "function_69", - "symbol_type": "Function", - "file_path": "", - "line_start": 4636, - "line_end": 4640, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_70", - "name": "function_70", - "symbol_type": "Function", - "file_path": "", - "line_start": 4644, - "line_end": 4648, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_71", - "name": "function_71", - "symbol_type": "Function", - "file_path": "", - "line_start": 4659, - "line_end": 4859, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4664, - "line_end": 4671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_arithmetic_value", - "name": "get_arithmetic_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 4678, - "line_end": 4708, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4711, - "line_end": 4718, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4721, - "line_end": 4728, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4737, - "line_end": 4745, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4748, - "line_end": 4751, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4754, - "line_end": 4757, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4760, - "line_end": 4763, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4768, - "line_end": 4773, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4779, - "line_end": 4791, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4796, - "line_end": 4808, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4811, - "line_end": 4818, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4821, - "line_end": 4824, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4827, - "line_end": 4835, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_array_impl", - "name": "from_json_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4865, - "line_end": 4880, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4890, - "line_end": 4901, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_inplace_array_impl", - "name": "from_json_inplace_array_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 4904, - "line_end": 4908, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4911, - "line_end": 4920, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4923, - "line_end": 4931, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4935, - "line_end": 4953, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 4967, - "line_end": 5001, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl_base", - "name": "from_json_tuple_impl_base", - "symbol_type": "Function", - "file_path": "", - "line_start": 5004, - "line_end": 5007, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5010, - "line_end": 5014, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5017, - "line_end": 5020, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5023, - "line_end": 5026, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json_tuple_impl", - "name": "from_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5029, - "line_end": 5032, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5035, - "line_end": 5044, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5049, - "line_end": 5064, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5069, - "line_end": 5084, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5088, - "line_end": 5095, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_102", - "name": "function_102", - "symbol_type": "Function", - "file_path": "", - "line_start": 5101, - "line_end": 5106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_103", - "name": "function_103", - "symbol_type": "Function", - "file_path": "", - "line_start": 5174, - "line_end": 5355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_int_to_string", - "name": "int_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 5179, - "line_end": 5184, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5208, - "line_end": 5208, - "column_start": 4, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5209, - "line_end": 5214, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5216, - "line_end": 5216, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_108", - "name": "function_108", - "symbol_type": "Function", - "file_path": "", - "line_start": 5217, - "line_end": 5217, - "column_start": 4, - "column_end": 77, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 5219, - "line_end": 5221, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_110", - "name": "function_110", - "symbol_type": "Function", - "file_path": "", - "line_start": 5222, - "line_end": 5224, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_111", - "name": "function_111", - "symbol_type": "Function", - "file_path": "", - "line_start": 5225, - "line_end": 5225, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_112", - "name": "function_112", - "symbol_type": "Function", - "file_path": "", - "line_start": 5228, - "line_end": 5231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_113", - "name": "function_113", - "symbol_type": "Function", - "file_path": "", - "line_start": 5234, - "line_end": 5240, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_114", - "name": "function_114", - "symbol_type": "Function", - "file_path": "", - "line_start": 5242, - "line_end": 5248, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_115", - "name": "function_115", - "symbol_type": "Function", - "file_path": "", - "line_start": 5251, - "line_end": 5254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_116", - "name": "function_116", - "symbol_type": "Function", - "file_path": "", - "line_start": 5257, - "line_end": 5260, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_117", - "name": "function_117", - "symbol_type": "Function", - "file_path": "", - "line_start": 5263, - "line_end": 5296, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_118", - "name": "function_118", - "symbol_type": "Function", - "file_path": "", - "line_start": 5299, - "line_end": 5302, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5313, - "line_end": 5313, - "column_start": 4, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5316, - "line_end": 5317, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5319, - "line_end": 5319, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_122", - "name": "function_122", - "symbol_type": "Function", - "file_path": "", - "line_start": 5320, - "line_end": 5320, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Function", - "file_path": "", - "line_start": 5321, - "line_end": 5321, - "column_start": 4, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_124", - "name": "function_124", - "symbol_type": "Function", - "file_path": "", - "line_start": 5322, - "line_end": 5322, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_125", - "name": "function_125", - "symbol_type": "Function", - "file_path": "", - "line_start": 5323, - "line_end": 5323, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_126", - "name": "function_126", - "symbol_type": "Function", - "file_path": "", - "line_start": 5326, - "line_end": 5329, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_127", - "name": "function_127", - "symbol_type": "Function", - "file_path": "", - "line_start": 5332, - "line_end": 5335, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5342, - "line_end": 5345, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 5350, - "line_end": 5353, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_130", - "name": "function_130", - "symbol_type": "Function", - "file_path": "", - "line_start": 5356, - "line_end": 5386, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_131", - "name": "function_131", - "symbol_type": "Function", - "file_path": "", - "line_start": 5404, - "line_end": 5808, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5425, - "line_end": 5431, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5438, - "line_end": 5444, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5447, - "line_end": 5453, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5458, - "line_end": 5464, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5471, - "line_end": 5477, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5480, - "line_end": 5486, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5493, - "line_end": 5499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5506, - "line_end": 5512, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5519, - "line_end": 5525, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5532, - "line_end": 5539, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5542, - "line_end": 5549, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5554, - "line_end": 5564, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5567, - "line_end": 5579, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5583, - "line_end": 5595, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5602, - "line_end": 5609, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5612, - "line_end": 5619, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_construct", - "name": "construct", - "symbol_type": "Function", - "file_path": "", - "line_start": 5623, - "line_end": 5633, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5642, - "line_end": 5645, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5655, - "line_end": 5658, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5662, - "line_end": 5665, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5668, - "line_end": 5671, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5675, - "line_end": 5678, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5682, - "line_end": 5685, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5689, - "line_end": 5692, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5697, - "line_end": 5701, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5705, - "line_end": 5708, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5718, - "line_end": 5721, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5724, - "line_end": 5727, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5731, - "line_end": 5734, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5737, - "line_end": 5740, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5744, - "line_end": 5747, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5750, - "line_end": 5753, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5760, - "line_end": 5763, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5766, - "line_end": 5769, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5774, - "line_end": 5777, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json_tuple_impl", - "name": "to_json_tuple_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 5780, - "line_end": 5783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5786, - "line_end": 5789, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_json", - "name": "to_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5793, - "line_end": 5796, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_json", - "name": "from_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 5847, - "line_end": 5852, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5897, - "line_end": 5899, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5902, - "line_end": 5904, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5907, - "line_end": 5909, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5912, - "line_end": 5916, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_byte_container_with_subtype", - "name": "byte_container_with_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5919, - "line_end": 5923, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_176", - "name": "function_176", - "symbol_type": "Function", - "file_path": "", - "line_start": 5925, - "line_end": 5929, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_177", - "name": "function_177", - "symbol_type": "Function", - "file_path": "", - "line_start": 5931, - "line_end": 5934, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_subtype", - "name": "set_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5938, - "line_end": 5942, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_subtype", - "name": "subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5946, - "line_end": 5949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_has_subtype", - "name": "has_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5953, - "line_end": 5956, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear_subtype", - "name": "clear_subtype", - "symbol_type": "Function", - "file_path": "", - "line_start": 5960, - "line_end": 5964, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_182", - "name": "function_182", - "symbol_type": "Function", - "file_path": "", - "line_start": 5999, - "line_end": 6109, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_combine", - "name": "combine", - "symbol_type": "Function", - "file_path": "", - "line_start": 6004, - "line_end": 6008, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hash", - "name": "hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 6022, - "line_end": 6107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_185", - "name": "function_185", - "symbol_type": "Function", - "file_path": "", - "line_start": 6171, - "line_end": 6632, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6193, - "line_end": 6197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6200, - "line_end": 6200, - "column_start": 4, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_file_input_adapter", - "name": "file_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6201, - "line_end": 6201, - "column_start": 4, - "column_end": 64, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_character", - "name": "get_character", - "symbol_type": "Function", - "file_path": "", - "line_start": 6206, - "line_end": 6209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_190", - "name": "function_190", - "symbol_type": "Function", - "file_path": "", - "line_start": 6230, - "line_end": 6238, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6240, - "line_end": 6242, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6245, - "line_end": 6245, - "column_start": 4, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_193", - "name": "function_193", - "symbol_type": "Function", - "file_path": "", - "line_start": 6246, - "line_end": 6246, - "column_start": 4, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_194", - "name": "function_194", - "symbol_type": "Function", - "file_path": "", - "line_start": 6247, - "line_end": 6247, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6249, - "line_end": 6254, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_196", - "name": "function_196", - "symbol_type": "Function", - "file_path": "", - "line_start": 6259, - "line_end": 6268, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6285, - "line_end": 6287, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_198", - "name": "function_198", - "symbol_type": "Function", - "file_path": "", - "line_start": 6289, - "line_end": 6299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_199", - "name": "function_199", - "symbol_type": "Function", - "file_path": "", - "line_start": 6308, - "line_end": 6311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_200", - "name": "function_200", - "symbol_type": "Function", - "file_path": "", - "line_start": 6321, - "line_end": 6372, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_201", - "name": "function_201", - "symbol_type": "Function", - "file_path": "", - "line_start": 6379, - "line_end": 6434, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6444, - "line_end": 6445, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_203", - "name": "function_203", - "symbol_type": "Function", - "file_path": "", - "line_start": 6447, - "line_end": 6462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fill_buffer", - "name": "fill_buffer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6468, - "line_end": 6471, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_205", - "name": "function_205", - "symbol_type": "Function", - "file_path": "", - "line_start": 6489, - "line_end": 6492, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_206", - "name": "function_206", - "symbol_type": "Function", - "file_path": "", - "line_start": 6513, - "line_end": 6516, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6521, - "line_end": 6525, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_208", - "name": "function_208", - "symbol_type": "Function", - "file_path": "", - "line_start": 6546, - "line_end": 6549, - "column_start": 11, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6555, - "line_end": 6558, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6562, - "line_end": 6565, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6567, - "line_end": 6570, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6572, - "line_end": 6575, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6588, - "line_end": 6593, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_input_adapter", - "name": "input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6596, - "line_end": 6599, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6613, - "line_end": 6614, - "column_start": 4, - "column_end": 87, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 6620, - "line_end": 6621, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_217", - "name": "function_217", - "symbol_type": "Function", - "file_path": "", - "line_start": 6623, - "line_end": 6626, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6813, - "line_end": 6815, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6818, - "line_end": 6818, - "column_start": 4, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_parser", - "name": "json_sax_dom_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6819, - "line_end": 6819, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_221", - "name": "function_221", - "symbol_type": "Function", - "file_path": "", - "line_start": 6822, - "line_end": 6822, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 6824, - "line_end": 6828, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_boolean", - "name": "boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 6830, - "line_end": 6834, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_integer", - "name": "number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 6836, - "line_end": 6840, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_unsigned", - "name": "number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 6842, - "line_end": 6846, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_number_float", - "name": "number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 6848, - "line_end": 6852, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_string", - "name": "string", - "symbol_type": "Function", - "file_path": "", - "line_start": 6854, - "line_end": 6858, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 6860, - "line_end": 6864, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_object", - "name": "start_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6866, - "line_end": 6876, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_key", - "name": "key", - "symbol_type": "Function", - "file_path": "", - "line_start": 6878, - "line_end": 6886, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_object", - "name": "end_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 6888, - "line_end": 6896, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_start_array", - "name": "start_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6898, - "line_end": 6908, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end_array", - "name": "end_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 6910, - "line_end": 6918, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 6921, - "line_end": 6931, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_errored", - "name": "is_errored", - "symbol_type": "Function", - "file_path": "", - "line_start": 6933, - "line_end": 6936, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 6993, - "line_end": 6999, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 7002, - "line_end": 7002, - "column_start": 4, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 7003, - "line_end": 7003, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_239", - "name": "function_239", - "symbol_type": "Function", - "file_path": "", - "line_start": 7004, - "line_end": 7004, - "column_start": 4, - "column_end": 90, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_240", - "name": "function_240", - "symbol_type": "Function", - "file_path": "", - "line_start": 7005, - "line_end": 7005, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_241", - "name": "function_241", - "symbol_type": "Function", - "file_path": "", - "line_start": 7006, - "line_end": 7006, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_242", - "name": "function_242", - "symbol_type": "Function", - "file_path": "", - "line_start": 7008, - "line_end": 7012, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_243", - "name": "function_243", - "symbol_type": "Function", - "file_path": "", - "line_start": 7014, - "line_end": 7018, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_244", - "name": "function_244", - "symbol_type": "Function", - "file_path": "", - "line_start": 7020, - "line_end": 7024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_245", - "name": "function_245", - "symbol_type": "Function", - "file_path": "", - "line_start": 7026, - "line_end": 7030, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_246", - "name": "function_246", - "symbol_type": "Function", - "file_path": "", - "line_start": 7032, - "line_end": 7036, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_247", - "name": "function_247", - "symbol_type": "Function", - "file_path": "", - "line_start": 7038, - "line_end": 7042, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_248", - "name": "function_248", - "symbol_type": "Function", - "file_path": "", - "line_start": 7044, - "line_end": 7048, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_249", - "name": "function_249", - "symbol_type": "Function", - "file_path": "", - "line_start": 7050, - "line_end": 7066, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_250", - "name": "function_250", - "symbol_type": "Function", - "file_path": "", - "line_start": 7068, - "line_end": 7083, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_251", - "name": "function_251", - "symbol_type": "Function", - "file_path": "", - "line_start": 7085, - "line_end": 7119, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_252", - "name": "function_252", - "symbol_type": "Function", - "file_path": "", - "line_start": 7121, - "line_end": 7136, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_253", - "name": "function_253", - "symbol_type": "Function", - "file_path": "", - "line_start": 7138, - "line_end": 7168, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse_error", - "name": "parse_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 7171, - "line_end": 7181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_255", - "name": "function_255", - "symbol_type": "Function", - "file_path": "", - "line_start": 7183, - "line_end": 7186, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_handle_value", - "name": "handle_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 7205, - "line_end": 7266, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_257", - "name": "function_257", - "symbol_type": "Function", - "file_path": "", - "line_start": 7298, - "line_end": 7301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_258", - "name": "function_258", - "symbol_type": "Function", - "file_path": "", - "line_start": 7303, - "line_end": 7306, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_259", - "name": "function_259", - "symbol_type": "Function", - "file_path": "", - "line_start": 7308, - "line_end": 7311, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_260", - "name": "function_260", - "symbol_type": "Function", - "file_path": "", - "line_start": 7313, - "line_end": 7316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_261", - "name": "function_261", - "symbol_type": "Function", - "file_path": "", - "line_start": 7318, - "line_end": 7321, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_262", - "name": "function_262", - "symbol_type": "Function", - "file_path": "", - "line_start": 7323, - "line_end": 7326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_263", - "name": "function_263", - "symbol_type": "Function", - "file_path": "", - "line_start": 7328, - "line_end": 7331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_264", - "name": "function_264", - "symbol_type": "Function", - "file_path": "", - "line_start": 7333, - "line_end": 7336, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_265", - "name": "function_265", - "symbol_type": "Function", - "file_path": "", - "line_start": 7338, - "line_end": 7341, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_266", - "name": "function_266", - "symbol_type": "Function", - "file_path": "", - "line_start": 7343, - "line_end": 7346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_267", - "name": "function_267", - "symbol_type": "Function", - "file_path": "", - "line_start": 7348, - "line_end": 7351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_268", - "name": "function_268", - "symbol_type": "Function", - "file_path": "", - "line_start": 7353, - "line_end": 7356, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_269", - "name": "function_269", - "symbol_type": "Function", - "file_path": "", - "line_start": 7358, - "line_end": 7361, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_270", - "name": "function_270", - "symbol_type": "Function", - "file_path": "", - "line_start": 7397, - "line_end": 8683, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_271", - "name": "function_271", - "symbol_type": "Function", - "file_path": "", - "line_start": 7434, - "line_end": 7475, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7495, - "line_end": 7499, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7502, - "line_end": 7502, - "column_start": 4, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_lexer", - "name": "lexer", - "symbol_type": "Function", - "file_path": "", - "line_start": 7503, - "line_end": 7503, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_275", - "name": "function_275", - "symbol_type": "Function", - "file_path": "", - "line_start": 7504, - "line_end": 7504, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_276", - "name": "function_276", - "symbol_type": "Function", - "file_path": "", - "line_start": 7505, - "line_end": 7505, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_277", - "name": "function_277", - "symbol_type": "Function", - "file_path": "", - "line_start": 7506, - "line_end": 7506, - "column_start": 4, - "column_end": 23, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_278", - "name": "function_278", - "symbol_type": "Function", - "file_path": "", - "line_start": 7514, - "line_end": 7520, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_279", - "name": "function_279", - "symbol_type": "Function", - "file_path": "", - "line_start": 7541, - "line_end": 7572, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_280", - "name": "function_280", - "symbol_type": "Function", - "file_path": "", - "line_start": 7589, - "line_end": 7609, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_281", - "name": "function_281", - "symbol_type": "Function", - "file_path": "", - "line_start": 7626, - "line_end": 8210, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_282", - "name": "function_282", - "symbol_type": "Function", - "file_path": "", - "line_start": 8216, - "line_end": 8281, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_283", - "name": "function_283", - "symbol_type": "Function", - "file_path": "", - "line_start": 8284, - "line_end": 8287, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_284", - "name": "function_284", - "symbol_type": "Function", - "file_path": "", - "line_start": 8290, - "line_end": 8293, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_285", - "name": "function_285", - "symbol_type": "Function", - "file_path": "", - "line_start": 8296, - "line_end": 8299, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_286", - "name": "function_286", - "symbol_type": "Function", - "file_path": "", - "line_start": 8341, - "line_end": 8664, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 8692, - "line_end": 8697, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 8709, - "line_end": 8736, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unget", - "name": "unget", - "symbol_type": "Function", - "file_path": "", - "line_start": 8746, - "line_end": 8770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 8773, - "line_end": 8776, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_291", - "name": "function_291", - "symbol_type": "Function", - "file_path": "", - "line_start": 8784, - "line_end": 8787, - "column_start": 52, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_unsigned", - "name": "get_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 8790, - "line_end": 8793, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number_float", - "name": "get_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 8796, - "line_end": 8799, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_294", - "name": "function_294", - "symbol_type": "Function", - "file_path": "", - "line_start": 8802, - "line_end": 8805, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 8812, - "line_end": 8815, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_token_string", - "name": "get_token_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 8820, - "line_end": 8841, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_297", - "name": "function_297", - "symbol_type": "Function", - "file_path": "", - "line_start": 8844, - "line_end": 8848, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_bom", - "name": "skip_bom", - "symbol_type": "Function", - "file_path": "", - "line_start": 8858, - "line_end": 8870, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 8872, - "line_end": 8879, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_scan", - "name": "scan", - "symbol_type": "Function", - "file_path": "", - "line_start": 8881, - "line_end": 8967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_301", - "name": "function_301", - "symbol_type": "Function", - "file_path": "", - "line_start": 9030, - "line_end": 9169, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_302", - "name": "function_302", - "symbol_type": "Function", - "file_path": "", - "line_start": 9170, - "line_end": 12153, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_little_endianness", - "name": "little_endianness", - "symbol_type": "Function", - "file_path": "", - "line_start": 9198, - "line_end": 9201, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9228, - "line_end": 9231, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9234, - "line_end": 9234, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_reader", - "name": "binary_reader", - "symbol_type": "Function", - "file_path": "", - "line_start": 9235, - "line_end": 9235, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_307", - "name": "function_307", - "symbol_type": "Function", - "file_path": "", - "line_start": 9236, - "line_end": 9236, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_308", - "name": "function_308", - "symbol_type": "Function", - "file_path": "", - "line_start": 9237, - "line_end": 9237, - "column_start": 4, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_309", - "name": "function_309", - "symbol_type": "Function", - "file_path": "", - "line_start": 9238, - "line_end": 9238, - "column_start": 4, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_310", - "name": "function_310", - "symbol_type": "Function", - "file_path": "", - "line_start": 9248, - "line_end": 9301, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_311", - "name": "function_311", - "symbol_type": "Function", - "file_path": "", - "line_start": 9312, - "line_end": 9328, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_312", - "name": "function_312", - "symbol_type": "Function", - "file_path": "", - "line_start": 9337, - "line_end": 9353, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_string", - "name": "get_bson_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 9367, - "line_end": 9377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_bson_binary", - "name": "get_bson_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 9389, - "line_end": 9404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_315", - "name": "function_315", - "symbol_type": "Function", - "file_path": "", - "line_start": 9416, - "line_end": 9482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_316", - "name": "function_316", - "symbol_type": "Function", - "file_path": "", - "line_start": 9496, - "line_end": 9528, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_317", - "name": "function_317", - "symbol_type": "Function", - "file_path": "", - "line_start": 9534, - "line_end": 9550, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_318", - "name": "function_318", - "symbol_type": "Function", - "file_path": "", - "line_start": 9564, - "line_end": 10042, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_319", - "name": "function_319", - "symbol_type": "Function", - "file_path": "", - "line_start": 10055, - "line_end": 10138, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_320", - "name": "function_320", - "symbol_type": "Function", - "file_path": "", - "line_start": 10151, - "line_end": 10238, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_321", - "name": "function_321", - "symbol_type": "Function", - "file_path": "", - "line_start": 10246, - "line_end": 10276, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_322", - "name": "function_322", - "symbol_type": "Function", - "file_path": "", - "line_start": 10284, - "line_end": 10331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_323", - "name": "function_323", - "symbol_type": "Function", - "file_path": "", - "line_start": 10340, - "line_end": 10709, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_324", - "name": "function_324", - "symbol_type": "Function", - "file_path": "", - "line_start": 10721, - "line_end": 10792, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_325", - "name": "function_325", - "symbol_type": "Function", - "file_path": "", - "line_start": 10804, - "line_end": 10909, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_326", - "name": "function_326", - "symbol_type": "Function", - "file_path": "", - "line_start": 10915, - "line_end": 10931, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_327", - "name": "function_327", - "symbol_type": "Function", - "file_path": "", - "line_start": 10937, - "line_end": 10961, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_328", - "name": "function_328", - "symbol_type": "Function", - "file_path": "", - "line_start": 10974, - "line_end": 10977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_329", - "name": "function_329", - "symbol_type": "Function", - "file_path": "", - "line_start": 10993, - "line_end": 11082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_330", - "name": "function_330", - "symbol_type": "Function", - "file_path": "", - "line_start": 11088, - "line_end": 11140, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_331", - "name": "function_331", - "symbol_type": "Function", - "file_path": "", - "line_start": 11153, - "line_end": 11363, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_332", - "name": "function_332", - "symbol_type": "Function", - "file_path": "", - "line_start": 11376, - "line_end": 11437, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_333", - "name": "function_333", - "symbol_type": "Function", - "file_path": "", - "line_start": 11443, - "line_end": 11621, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_334", - "name": "function_334", - "symbol_type": "Function", - "file_path": "", - "line_start": 11626, - "line_end": 11729, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_335", - "name": "function_335", - "symbol_type": "Function", - "file_path": "", - "line_start": 11734, - "line_end": 11812, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_336", - "name": "function_336", - "symbol_type": "Function", - "file_path": "", - "line_start": 11817, - "line_end": 11881, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_337", - "name": "function_337", - "symbol_type": "Function", - "file_path": "", - "line_start": 11896, - "line_end": 11900, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_338", - "name": "function_338", - "symbol_type": "Function", - "file_path": "", - "line_start": 11905, - "line_end": 11914, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_number", - "name": "get_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 11932, - "line_end": 11958, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_string", - "name": "get_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 11975, - "line_end": 11991, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_binary", - "name": "get_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 12008, - "line_end": 12024, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_342", - "name": "function_342", - "symbol_type": "Function", - "file_path": "", - "line_start": 12031, - "line_end": 12040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_343", - "name": "function_343", - "symbol_type": "Function", - "file_path": "", - "line_start": 12045, - "line_end": 12050, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_344", - "name": "function_344", - "symbol_type": "Function", - "file_path": "", - "line_start": 12058, - "line_end": 12092, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_345", - "name": "function_345", - "symbol_type": "Function", - "file_path": "", - "line_start": 12195, - "line_end": 12686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 12239, - "line_end": 12249, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_347", - "name": "function_347", - "symbol_type": "Function", - "file_path": "", - "line_start": 12261, - "line_end": 12313, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_348", - "name": "function_348", - "symbol_type": "Function", - "file_path": "", - "line_start": 12321, - "line_end": 12325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_349", - "name": "function_349", - "symbol_type": "Function", - "file_path": "", - "line_start": 12328, - "line_end": 12343, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_350", - "name": "function_350", - "symbol_type": "Function", - "file_path": "", - "line_start": 12347, - "line_end": 12638, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_351", - "name": "function_351", - "symbol_type": "Function", - "file_path": "", - "line_start": 12641, - "line_end": 12644, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_352", - "name": "function_352", - "symbol_type": "Function", - "file_path": "", - "line_start": 12646, - "line_end": 12673, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_353", - "name": "function_353", - "symbol_type": "Function", - "file_path": "", - "line_start": 12719, - "line_end": 12834, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_354", - "name": "function_354", - "symbol_type": "Function", - "file_path": "", - "line_start": 12744, - "line_end": 12747, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_355", - "name": "function_355", - "symbol_type": "Function", - "file_path": "", - "line_start": 12750, - "line_end": 12753, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_356", - "name": "function_356", - "symbol_type": "Function", - "file_path": "", - "line_start": 12756, - "line_end": 12759, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_357", - "name": "function_357", - "symbol_type": "Function", - "file_path": "", - "line_start": 12762, - "line_end": 12765, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_358", - "name": "function_358", - "symbol_type": "Function", - "file_path": "", - "line_start": 12768, - "line_end": 12771, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_359", - "name": "function_359", - "symbol_type": "Function", - "file_path": "", - "line_start": 12773, - "line_end": 12776, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_360", - "name": "function_360", - "symbol_type": "Function", - "file_path": "", - "line_start": 12778, - "line_end": 12781, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_361", - "name": "function_361", - "symbol_type": "Function", - "file_path": "", - "line_start": 12783, - "line_end": 12788, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_362", - "name": "function_362", - "symbol_type": "Function", - "file_path": "", - "line_start": 12790, - "line_end": 12793, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_363", - "name": "function_363", - "symbol_type": "Function", - "file_path": "", - "line_start": 12795, - "line_end": 12799, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_364", - "name": "function_364", - "symbol_type": "Function", - "file_path": "", - "line_start": 12801, - "line_end": 12806, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_365", - "name": "function_365", - "symbol_type": "Function", - "file_path": "", - "line_start": 12808, - "line_end": 12812, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_366", - "name": "function_366", - "symbol_type": "Function", - "file_path": "", - "line_start": 12814, - "line_end": 12819, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_367", - "name": "function_367", - "symbol_type": "Function", - "file_path": "", - "line_start": 12821, - "line_end": 12825, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_368", - "name": "function_368", - "symbol_type": "Function", - "file_path": "", - "line_start": 12827, - "line_end": 12831, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_369", - "name": "function_369", - "symbol_type": "Function", - "file_path": "", - "line_start": 12835, - "line_end": 12858, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_370", - "name": "function_370", - "symbol_type": "Function", - "file_path": "", - "line_start": 12890, - "line_end": 13186, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_end", - "name": "set_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 12915, - "line_end": 13141, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12957, - "line_end": 12957, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_373", - "name": "function_373", - "symbol_type": "Function", - "file_path": "", - "line_start": 12958, - "line_end": 12958, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12959, - "line_end": 12959, - "column_start": 4, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_375", - "name": "function_375", - "symbol_type": "Function", - "file_path": "", - "line_start": 12960, - "line_end": 12960, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 12968, - "line_end": 13000, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 13018, - "line_end": 13020, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_378", - "name": "function_378", - "symbol_type": "Function", - "file_path": "", - "line_start": 13028, - "line_end": 13036, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iter_impl", - "name": "iter_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 13043, - "line_end": 13045, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_380", - "name": "function_380", - "symbol_type": "Function", - "file_path": "", - "line_start": 13053, - "line_end": 13058, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_381", - "name": "function_381", - "symbol_type": "Function", - "file_path": "", - "line_start": 13069, - "line_end": 13102, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_382", - "name": "function_382", - "symbol_type": "Function", - "file_path": "", - "line_start": 13192, - "line_end": 13228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_383", - "name": "function_383", - "symbol_type": "Function", - "file_path": "", - "line_start": 13234, - "line_end": 13239, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_384", - "name": "function_384", - "symbol_type": "Function", - "file_path": "", - "line_start": 13245, - "line_end": 13279, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_385", - "name": "function_385", - "symbol_type": "Function", - "file_path": "", - "line_start": 13285, - "line_end": 13290, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_386", - "name": "function_386", - "symbol_type": "Function", - "file_path": "", - "line_start": 13296, - "line_end": 13330, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_387", - "name": "function_387", - "symbol_type": "Function", - "file_path": "", - "line_start": 13337, - "line_end": 13366, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_388", - "name": "function_388", - "symbol_type": "Function", - "file_path": "", - "line_start": 13373, - "line_end": 13376, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_389", - "name": "function_389", - "symbol_type": "Function", - "file_path": "", - "line_start": 13382, - "line_end": 13411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_390", - "name": "function_390", - "symbol_type": "Function", - "file_path": "", - "line_start": 13417, - "line_end": 13420, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_391", - "name": "function_391", - "symbol_type": "Function", - "file_path": "", - "line_start": 13426, - "line_end": 13429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_392", - "name": "function_392", - "symbol_type": "Function", - "file_path": "", - "line_start": 13435, - "line_end": 13438, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_393", - "name": "function_393", - "symbol_type": "Function", - "file_path": "", - "line_start": 13444, - "line_end": 13475, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_394", - "name": "function_394", - "symbol_type": "Function", - "file_path": "", - "line_start": 13481, - "line_end": 13484, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_395", - "name": "function_395", - "symbol_type": "Function", - "file_path": "", - "line_start": 13490, - "line_end": 13495, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_396", - "name": "function_396", - "symbol_type": "Function", - "file_path": "", - "line_start": 13501, - "line_end": 13506, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_397", - "name": "function_397", - "symbol_type": "Function", - "file_path": "", - "line_start": 13512, - "line_end": 13517, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_398", - "name": "function_398", - "symbol_type": "Function", - "file_path": "", - "line_start": 13523, - "line_end": 13546, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_399", - "name": "function_399", - "symbol_type": "Function", - "file_path": "", - "line_start": 13552, - "line_end": 13584, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_400", - "name": "function_400", - "symbol_type": "Function", - "file_path": "", - "line_start": 13590, - "line_end": 13600, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 13606, - "line_end": 13609, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_402", - "name": "function_402", - "symbol_type": "Function", - "file_path": "", - "line_start": 13641, - "line_end": 13753, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13678, - "line_end": 13679, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 13682, - "line_end": 13682, - "column_start": 4, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_405", - "name": "function_405", - "symbol_type": "Function", - "file_path": "", - "line_start": 13685, - "line_end": 13688, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_406", - "name": "function_406", - "symbol_type": "Function", - "file_path": "", - "line_start": 13691, - "line_end": 13694, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_407", - "name": "function_407", - "symbol_type": "Function", - "file_path": "", - "line_start": 13697, - "line_end": 13700, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_408", - "name": "function_408", - "symbol_type": "Function", - "file_path": "", - "line_start": 13703, - "line_end": 13706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_409", - "name": "function_409", - "symbol_type": "Function", - "file_path": "", - "line_start": 13709, - "line_end": 13712, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_410", - "name": "function_410", - "symbol_type": "Function", - "file_path": "", - "line_start": 13715, - "line_end": 13718, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_411", - "name": "function_411", - "symbol_type": "Function", - "file_path": "", - "line_start": 13721, - "line_end": 13724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_412", - "name": "function_412", - "symbol_type": "Function", - "file_path": "", - "line_start": 13727, - "line_end": 13730, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_413", - "name": "function_413", - "symbol_type": "Function", - "file_path": "", - "line_start": 13733, - "line_end": 13736, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_414", - "name": "function_414", - "symbol_type": "Function", - "file_path": "", - "line_start": 13739, - "line_end": 13743, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_415", - "name": "function_415", - "symbol_type": "Function", - "file_path": "", - "line_start": 13746, - "line_end": 13750, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_416", - "name": "function_416", - "symbol_type": "Function", - "file_path": "", - "line_start": 13774, - "line_end": 13797, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_417", - "name": "function_417", - "symbol_type": "Function", - "file_path": "", - "line_start": 13835, - "line_end": 13853, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_418", - "name": "function_418", - "symbol_type": "Function", - "file_path": "", - "line_start": 13855, - "line_end": 13859, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_pointer", - "name": "json_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13867, - "line_end": 13869, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 13873, - "line_end": 13881, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_421", - "name": "function_421", - "symbol_type": "Function", - "file_path": "", - "line_start": 13886, - "line_end": 13889, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_422", - "name": "function_422", - "symbol_type": "Function", - "file_path": "", - "line_start": 13894, - "line_end": 13898, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_423", - "name": "function_423", - "symbol_type": "Function", - "file_path": "", - "line_start": 13903, - "line_end": 13909, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_424", - "name": "function_424", - "symbol_type": "Function", - "file_path": "", - "line_start": 13913, - "line_end": 13917, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_425", - "name": "function_425", - "symbol_type": "Function", - "file_path": "", - "line_start": 13921, - "line_end": 13924, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_426", - "name": "function_426", - "symbol_type": "Function", - "file_path": "", - "line_start": 13928, - "line_end": 13932, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_427", - "name": "function_427", - "symbol_type": "Function", - "file_path": "", - "line_start": 13936, - "line_end": 13939, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_428", - "name": "function_428", - "symbol_type": "Function", - "file_path": "", - "line_start": 13943, - "line_end": 13946, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parent_pointer", - "name": "parent_pointer", - "symbol_type": "Function", - "file_path": "", - "line_start": 13950, - "line_end": 13960, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_pop_back", - "name": "pop_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13964, - "line_end": 13972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_431", - "name": "function_431", - "symbol_type": "Function", - "file_path": "", - "line_start": 13976, - "line_end": 13984, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13988, - "line_end": 13991, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 13995, - "line_end": 13998, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 14002, - "line_end": 14005, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_435", - "name": "function_435", - "symbol_type": "Function", - "file_path": "", - "line_start": 14079, - "line_end": 14137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_436", - "name": "function_436", - "symbol_type": "Function", - "file_path": "", - "line_start": 14159, - "line_end": 14218, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_437", - "name": "function_437", - "symbol_type": "Function", - "file_path": "", - "line_start": 14227, - "line_end": 14269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_438", - "name": "function_438", - "symbol_type": "Function", - "file_path": "", - "line_start": 14285, - "line_end": 14325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_439", - "name": "function_439", - "symbol_type": "Function", - "file_path": "", - "line_start": 14334, - "line_end": 14376, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 14383, - "line_end": 14460, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 14471, - "line_end": 14529, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_442", - "name": "function_442", - "symbol_type": "Function", - "file_path": "", - "line_start": 14659, - "line_end": 14662, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_443", - "name": "function_443", - "symbol_type": "Function", - "file_path": "", - "line_start": 14667, - "line_end": 14670, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_444", - "name": "function_444", - "symbol_type": "Function", - "file_path": "", - "line_start": 14674, - "line_end": 14677, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_445", - "name": "function_445", - "symbol_type": "Function", - "file_path": "", - "line_start": 14736, - "line_end": 14740, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_446", - "name": "function_446", - "symbol_type": "Function", - "file_path": "", - "line_start": 14745, - "line_end": 14749, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_447", - "name": "function_447", - "symbol_type": "Function", - "file_path": "", - "line_start": 14754, - "line_end": 14758, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_448", - "name": "function_448", - "symbol_type": "Function", - "file_path": "", - "line_start": 14761, - "line_end": 14765, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_449", - "name": "function_449", - "symbol_type": "Function", - "file_path": "", - "line_start": 14770, - "line_end": 14774, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_450", - "name": "function_450", - "symbol_type": "Function", - "file_path": "", - "line_start": 14779, - "line_end": 14783, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_451", - "name": "function_451", - "symbol_type": "Function", - "file_path": "", - "line_start": 14786, - "line_end": 14790, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_452", - "name": "function_452", - "symbol_type": "Function", - "file_path": "", - "line_start": 14814, - "line_end": 14874, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14824, - "line_end": 14826, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14828, - "line_end": 14830, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14832, - "line_end": 14834, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14839, - "line_end": 14841, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14844, - "line_end": 14844, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_ref", - "name": "json_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 14845, - "line_end": 14845, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_459", - "name": "function_459", - "symbol_type": "Function", - "file_path": "", - "line_start": 14846, - "line_end": 14846, - "column_start": 4, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_460", - "name": "function_460", - "symbol_type": "Function", - "file_path": "", - "line_start": 14847, - "line_end": 14847, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_461", - "name": "function_461", - "symbol_type": "Function", - "file_path": "", - "line_start": 14848, - "line_end": 14848, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_462", - "name": "function_462", - "symbol_type": "Function", - "file_path": "", - "line_start": 14850, - "line_end": 14857, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_463", - "name": "function_463", - "symbol_type": "Function", - "file_path": "", - "line_start": 14859, - "line_end": 14862, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_464", - "name": "function_464", - "symbol_type": "Function", - "file_path": "", - "line_start": 14864, - "line_end": 14867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_465", - "name": "function_465", - "symbol_type": "Function", - "file_path": "", - "line_start": 14939, - "line_end": 15060, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_466", - "name": "function_466", - "symbol_type": "Function", - "file_path": "", - "line_start": 14948, - "line_end": 14948, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14950, - "line_end": 14950, - "column_start": 4, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14951, - "line_end": 14951, - "column_start": 4, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Function", - "file_path": "", - "line_start": 14952, - "line_end": 14952, - "column_start": 4, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_470", - "name": "function_470", - "symbol_type": "Function", - "file_path": "", - "line_start": 14953, - "line_end": 14953, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_471", - "name": "function_471", - "symbol_type": "Function", - "file_path": "", - "line_start": 14954, - "line_end": 14954, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14966, - "line_end": 14968, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_473", - "name": "function_473", - "symbol_type": "Function", - "file_path": "", - "line_start": 14970, - "line_end": 14973, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_474", - "name": "function_474", - "symbol_type": "Function", - "file_path": "", - "line_start": 14975, - "line_end": 14979, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 14991, - "line_end": 14993, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_476", - "name": "function_476", - "symbol_type": "Function", - "file_path": "", - "line_start": 14995, - "line_end": 14998, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_477", - "name": "function_477", - "symbol_type": "Function", - "file_path": "", - "line_start": 15000, - "line_end": 15004, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 15016, - "line_end": 15018, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_479", - "name": "function_479", - "symbol_type": "Function", - "file_path": "", - "line_start": 15020, - "line_end": 15023, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_480", - "name": "function_480", - "symbol_type": "Function", - "file_path": "", - "line_start": 15025, - "line_end": 15029, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 15040, - "line_end": 15041, - "column_start": 4, - "column_end": 86, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 15044, - "line_end": 15045, - "column_start": 4, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_output_adapter", - "name": "output_adapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 15048, - "line_end": 15049, - "column_start": 4, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_484", - "name": "function_484", - "symbol_type": "Function", - "file_path": "", - "line_start": 15051, - "line_end": 15054, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_485", - "name": "function_485", - "symbol_type": "Function", - "file_path": "", - "line_start": 15061, - "line_end": 16876, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary_writer", - "name": "binary_writer", - "symbol_type": "Function", - "file_path": "", - "line_start": 15090, - "line_end": 15093, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_487", - "name": "function_487", - "symbol_type": "Function", - "file_path": "", - "line_start": 15099, - "line_end": 15123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_488", - "name": "function_488", - "symbol_type": "Function", - "file_path": "", - "line_start": 15128, - "line_end": 15447, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_489", - "name": "function_489", - "symbol_type": "Function", - "file_path": "", - "line_start": 15452, - "line_end": 15769, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_490", - "name": "function_490", - "symbol_type": "Function", - "file_path": "", - "line_start": 15778, - "line_end": 15988, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_491", - "name": "function_491", - "symbol_type": "Function", - "file_path": "", - "line_start": 15999, - "line_end": 16009, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_492", - "name": "function_492", - "symbol_type": "Function", - "file_path": "", - "line_start": 16014, - "line_end": 16021, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_493", - "name": "function_493", - "symbol_type": "Function", - "file_path": "", - "line_start": 16026, - "line_end": 16031, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_494", - "name": "function_494", - "symbol_type": "Function", - "file_path": "", - "line_start": 16036, - "line_end": 16041, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_495", - "name": "function_495", - "symbol_type": "Function", - "file_path": "", - "line_start": 16046, - "line_end": 16049, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_496", - "name": "function_496", - "symbol_type": "Function", - "file_path": "", - "line_start": 16054, - "line_end": 16063, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_497", - "name": "function_497", - "symbol_type": "Function", - "file_path": "", - "line_start": 16068, - "line_end": 16071, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_498", - "name": "function_498", - "symbol_type": "Function", - "file_path": "", - "line_start": 16076, - "line_end": 16081, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_499", - "name": "function_499", - "symbol_type": "Function", - "file_path": "", - "line_start": 16086, - "line_end": 16099, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_500", - "name": "function_500", - "symbol_type": "Function", - "file_path": "", - "line_start": 16104, - "line_end": 16109, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_501", - "name": "function_501", - "symbol_type": "Function", - "file_path": "", - "line_start": 16114, - "line_end": 16131, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_502", - "name": "function_502", - "symbol_type": "Function", - "file_path": "", - "line_start": 16136, - "line_end": 16141, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_503", - "name": "function_503", - "symbol_type": "Function", - "file_path": "", - "line_start": 16146, - "line_end": 16156, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_504", - "name": "function_504", - "symbol_type": "Function", - "file_path": "", - "line_start": 16161, - "line_end": 16164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_505", - "name": "function_505", - "symbol_type": "Function", - "file_path": "", - "line_start": 16169, - "line_end": 16183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_506", - "name": "function_506", - "symbol_type": "Function", - "file_path": "", - "line_start": 16188, - "line_end": 16197, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_507", - "name": "function_507", - "symbol_type": "Function", - "file_path": "", - "line_start": 16203, - "line_end": 16243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_508", - "name": "function_508", - "symbol_type": "Function", - "file_path": "", - "line_start": 16251, - "line_end": 16290, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_509", - "name": "function_509", - "symbol_type": "Function", - "file_path": "", - "line_start": 16298, - "line_end": 16307, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_510", - "name": "function_510", - "symbol_type": "Function", - "file_path": "", - "line_start": 16313, - "line_end": 16323, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_511", - "name": "function_511", - "symbol_type": "Function", - "file_path": "", - "line_start": 16329, - "line_end": 16332, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_512", - "name": "function_512", - "symbol_type": "Function", - "file_path": "", - "line_start": 16334, - "line_end": 16337, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_513", - "name": "function_513", - "symbol_type": "Function", - "file_path": "", - "line_start": 16343, - "line_end": 16346, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_514", - "name": "function_514", - "symbol_type": "Function", - "file_path": "", - "line_start": 16348, - "line_end": 16351, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16360, - "line_end": 16369, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16374, - "line_end": 16456, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number_with_ubjson_prefix", - "name": "write_number_with_ubjson_prefix", - "symbol_type": "Function", - "file_path": "", - "line_start": 16462, - "line_end": 16538, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_518", - "name": "function_518", - "symbol_type": "Function", - "file_path": "", - "line_start": 16543, - "line_end": 16642, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_519", - "name": "function_519", - "symbol_type": "Function", - "file_path": "", - "line_start": 16644, - "line_end": 16647, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_520", - "name": "function_520", - "symbol_type": "Function", - "file_path": "", - "line_start": 16649, - "line_end": 16652, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_521", - "name": "function_521", - "symbol_type": "Function", - "file_path": "", - "line_start": 16657, - "line_end": 16764, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_write_number", - "name": "write_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 16784, - "line_end": 16798, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_523", - "name": "function_523", - "symbol_type": "Function", - "file_path": "", - "line_start": 16800, - "line_end": 16825, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16834, - "line_end": 16837, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16841, - "line_end": 16848, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16852, - "line_end": 16855, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_char_type", - "name": "to_char_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 16863, - "line_end": 16866, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_528", - "name": "function_528", - "symbol_type": "Function", - "file_path": "", - "line_start": 16928, - "line_end": 18022, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_reinterpret_bits", - "name": "reinterpret_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 16955, - "line_end": 16962, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diyfp", - "name": "diyfp", - "symbol_type": "Function", - "file_path": "", - "line_start": 16971, - "line_end": 16971, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_531", - "name": "function_531", - "symbol_type": "Function", - "file_path": "", - "line_start": 16977, - "line_end": 16983, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_532", - "name": "function_532", - "symbol_type": "Function", - "file_path": "", - "line_start": 16989, - "line_end": 17048, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_533", - "name": "function_533", - "symbol_type": "Function", - "file_path": "", - "line_start": 17054, - "line_end": 17065, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_534", - "name": "function_534", - "symbol_type": "Function", - "file_path": "", - "line_start": 17071, - "line_end": 17079, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compute_boundaries", - "name": "compute_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 17096, - "line_end": 17161, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_cached_power_for_binary_exponent", - "name": "get_cached_power_for_binary_exponent", - "symbol_type": "Function", - "file_path": "", - "line_start": 17235, - "line_end": 17393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find_largest_pow10", - "name": "find_largest_pow10", - "symbol_type": "Function", - "file_path": "", - "line_start": 17399, - "line_end": 17451, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_round", - "name": "grisu2_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 17453, - "line_end": 17488, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2_digit_gen", - "name": "grisu2_digit_gen", - "symbol_type": "Function", - "file_path": "", - "line_start": 17494, - "line_end": 17727, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_grisu2", - "name": "grisu2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17735, - "line_end": 17786, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_541", - "name": "function_541", - "symbol_type": "Function", - "file_path": "", - "line_start": 17794, - "line_end": 17826, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_542", - "name": "function_542", - "symbol_type": "Function", - "file_path": "", - "line_start": 17834, - "line_end": 17874, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_543", - "name": "function_543", - "symbol_type": "Function", - "file_path": "", - "line_start": 17886, - "line_end": 17955, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_544", - "name": "function_544", - "symbol_type": "Function", - "file_path": "", - "line_start": 18025, - "line_end": 18678, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18075, - "line_end": 18084, - "column_start": 4, - "column_end": 6, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18087, - "line_end": 18087, - "column_start": 4, - "column_end": 43, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_547", - "name": "function_547", - "symbol_type": "Function", - "file_path": "", - "line_start": 18088, - "line_end": 18088, - "column_start": 4, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_serializer", - "name": "serializer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18089, - "line_end": 18089, - "column_start": 4, - "column_end": 38, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_549", - "name": "function_549", - "symbol_type": "Function", - "file_path": "", - "line_start": 18090, - "line_end": 18090, - "column_start": 4, - "column_end": 49, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_550", - "name": "function_550", - "symbol_type": "Function", - "file_path": "", - "line_start": 18091, - "line_end": 18091, - "column_start": 4, - "column_end": 28, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_551", - "name": "function_551", - "symbol_type": "Function", - "file_path": "", - "line_start": 18115, - "line_end": 18382, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_switch", - "name": "switch", - "symbol_type": "Function", - "file_path": "", - "line_start": 18413, - "line_end": 18594, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_hex_bytes", - "name": "hex_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 18685, - "line_end": 18692, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18696, - "line_end": 18699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_negative_number", - "name": "is_negative_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 18702, - "line_end": 18705, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_integer", - "name": "dump_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 18722, - "line_end": 18797, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18807, - "line_end": 18826, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18828, - "line_end": 18834, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_dump_float", - "name": "dump_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 18836, - "line_end": 18885, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_decode", - "name": "decode", - "symbol_type": "Function", - "file_path": "", - "line_start": 18908, - "line_end": 18941, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18948, - "line_end": 18952, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_remove_sign", - "name": "remove_sign", - "symbol_type": "Function", - "file_path": "", - "line_start": 18963, - "line_end": 18967, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 19050, - "line_end": 19050, - "column_start": 4, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 19051, - "line_end": 19051, - "column_start": 4, - "column_end": 107, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 19053, - "line_end": 19054, - "column_start": 4, - "column_end": 42, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_ordered_map", - "name": "ordered_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 19055, - "line_end": 19056, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 19058, - "line_end": 19069, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 19073, - "line_end": 19084, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_569", - "name": "function_569", - "symbol_type": "Function", - "file_path": "", - "line_start": 19086, - "line_end": 19089, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_570", - "name": "function_570", - "symbol_type": "Function", - "file_path": "", - "line_start": 19093, - "line_end": 19096, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_571", - "name": "function_571", - "symbol_type": "Function", - "file_path": "", - "line_start": 19098, - "line_end": 19101, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_572", - "name": "function_572", - "symbol_type": "Function", - "file_path": "", - "line_start": 19105, - "line_end": 19108, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_573", - "name": "function_573", - "symbol_type": "Function", - "file_path": "", - "line_start": 19110, - "line_end": 19121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_574", - "name": "function_574", - "symbol_type": "Function", - "file_path": "", - "line_start": 19125, - "line_end": 19136, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_575", - "name": "function_575", - "symbol_type": "Function", - "file_path": "", - "line_start": 19138, - "line_end": 19149, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_576", - "name": "function_576", - "symbol_type": "Function", - "file_path": "", - "line_start": 19153, - "line_end": 19164, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19166, - "line_end": 19183, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19187, - "line_end": 19204, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19206, - "line_end": 19209, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 19211, - "line_end": 19262, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19264, - "line_end": 19274, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 19278, - "line_end": 19288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19290, - "line_end": 19300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19304, - "line_end": 19314, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 19316, - "line_end": 19326, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19328, - "line_end": 19331, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19333, - "line_end": 19344, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 19351, - "line_end": 19357, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_589", - "name": "function_589", - "symbol_type": "Function", - "file_path": "", - "line_start": 19378, - "line_end": 19963, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parser", - "name": "parser", - "symbol_type": "Function", - "file_path": "", - "line_start": 19434, - "line_end": 19443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_get_allocator", - "name": "get_allocator", - "symbol_type": "Function", - "file_path": "", - "line_start": 19542, - "line_end": 19545, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_meta", - "name": "meta", - "symbol_type": "Function", - "file_path": "", - "line_start": 19549, - "line_end": 19610, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_593", - "name": "function_593", - "symbol_type": "Function", - "file_path": "", - "line_start": 19675, - "line_end": 19693, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19745, - "line_end": 19745, - "column_start": 8, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19747, - "line_end": 19747, - "column_start": 8, - "column_end": 56, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19749, - "line_end": 19749, - "column_start": 8, - "column_end": 70, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19751, - "line_end": 19751, - "column_start": 8, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19753, - "line_end": 19753, - "column_start": 8, - "column_end": 66, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19755, - "line_end": 19824, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19827, - "line_end": 19827, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19830, - "line_end": 19830, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19833, - "line_end": 19833, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19836, - "line_end": 19836, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19839, - "line_end": 19839, - "column_start": 8, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19842, - "line_end": 19842, - "column_start": 8, - "column_end": 81, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19845, - "line_end": 19845, - "column_start": 8, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19848, - "line_end": 19848, - "column_start": 8, - "column_end": 109, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19851, - "line_end": 19851, - "column_start": 8, - "column_end": 78, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_json_value", - "name": "json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 19854, - "line_end": 19854, - "column_start": 8, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_destroy", - "name": "destroy", - "symbol_type": "Function", - "file_path": "", - "line_start": 19856, - "line_end": 19962, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 20000, - "line_end": 20000, - "column_start": 8, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 20005, - "line_end": 20040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parents", - "name": "set_parents", - "symbol_type": "Function", - "file_path": "", - "line_start": 20042, - "line_end": 20053, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 20055, - "line_end": 20091, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20117, - "line_end": 20121, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20125, - "line_end": 20129, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20137, - "line_end": 20144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20151, - "line_end": 20200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20204, - "line_end": 20258, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20262, - "line_end": 20269, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20273, - "line_end": 20280, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20284, - "line_end": 20291, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_binary", - "name": "binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20295, - "line_end": 20302, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_array", - "name": "array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20306, - "line_end": 20310, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_object", - "name": "object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20314, - "line_end": 20318, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20322, - "line_end": 20327, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20334, - "line_end": 20434, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20443, - "line_end": 20443, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20447, - "line_end": 20512, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_basic_json", - "name": "basic_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 20516, - "line_end": 20529, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_631", - "name": "function_631", - "symbol_type": "Function", - "file_path": "", - "line_start": 20533, - "line_end": 20552, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_632", - "name": "function_632", - "symbol_type": "Function", - "file_path": "", - "line_start": 20556, - "line_end": 20559, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_type", - "name": "type", - "symbol_type": "Function", - "file_path": "", - "line_start": 20596, - "line_end": 20599, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_primitive", - "name": "is_primitive", - "symbol_type": "Function", - "file_path": "", - "line_start": 20603, - "line_end": 20606, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_structured", - "name": "is_structured", - "symbol_type": "Function", - "file_path": "", - "line_start": 20610, - "line_end": 20613, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 20617, - "line_end": 20620, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_boolean", - "name": "is_boolean", - "symbol_type": "Function", - "file_path": "", - "line_start": 20624, - "line_end": 20627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number", - "name": "is_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 20631, - "line_end": 20634, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_integer", - "name": "is_number_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 20638, - "line_end": 20641, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_unsigned", - "name": "is_number_unsigned", - "symbol_type": "Function", - "file_path": "", - "line_start": 20645, - "line_end": 20648, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_number_float", - "name": "is_number_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 20652, - "line_end": 20655, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_object", - "name": "is_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 20659, - "line_end": 20662, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_array", - "name": "is_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 20666, - "line_end": 20669, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_string", - "name": "is_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 20673, - "line_end": 20676, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_binary", - "name": "is_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 20680, - "line_end": 20683, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_is_discarded", - "name": "is_discarded", - "symbol_type": "Function", - "file_path": "", - "line_start": 20687, - "line_end": 20690, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_647", - "name": "function_647", - "symbol_type": "Function", - "file_path": "", - "line_start": 20694, - "line_end": 20697, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21249, - "line_end": 21253, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21263, - "line_end": 21277, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_CATCH", - "name": "JSON_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21272, - "line_end": 21276, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21286, - "line_end": 21300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21306, - "line_end": 21320, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21324, - "line_end": 21338, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 21344, - "line_end": 21358, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_655", - "name": "function_655", - "symbol_type": "Function", - "file_path": "", - "line_start": 21362, - "line_end": 21404, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_656", - "name": "function_656", - "symbol_type": "Function", - "file_path": "", - "line_start": 21408, - "line_end": 21417, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_657", - "name": "function_657", - "symbol_type": "Function", - "file_path": "", - "line_start": 21421, - "line_end": 21439, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_658", - "name": "function_658", - "symbol_type": "Function", - "file_path": "", - "line_start": 21443, - "line_end": 21454, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_659", - "name": "function_659", - "symbol_type": "Function", - "file_path": "", - "line_start": 21459, - "line_end": 21462, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_660", - "name": "function_660", - "symbol_type": "Function", - "file_path": "", - "line_start": 21465, - "line_end": 21468, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_661", - "name": "function_661", - "symbol_type": "Function", - "file_path": "", - "line_start": 21474, - "line_end": 21492, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_662", - "name": "function_662", - "symbol_type": "Function", - "file_path": "", - "line_start": 21498, - "line_end": 21509, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21553, - "line_end": 21569, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21579, - "line_end": 21595, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21606, - "line_end": 21622, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21629, - "line_end": 21643, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21639, - "line_end": 21642, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21654, - "line_end": 21668, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_JSON_INTERNAL_CATCH", - "name": "JSON_INTERNAL_CATCH", - "symbol_type": "Function", - "file_path": "", - "line_start": 21664, - "line_end": 21667, - "column_start": 12, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21678, - "line_end": 21681, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_value", - "name": "value", - "symbol_type": "Function", - "file_path": "", - "line_start": 21689, - "line_end": 21692, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21696, - "line_end": 21699, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_front", - "name": "front", - "symbol_type": "Function", - "file_path": "", - "line_start": 21703, - "line_end": 21706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21710, - "line_end": 21715, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_back", - "name": "back", - "symbol_type": "Function", - "file_path": "", - "line_start": 21719, - "line_end": 21724, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21731, - "line_end": 21794, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21801, - "line_end": 21867, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21869, - "line_end": 21881, - "column_start": 2, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase_internal", - "name": "erase_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 21885, - "line_end": 21900, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21917, - "line_end": 21920, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_erase", - "name": "erase", - "symbol_type": "Function", - "file_path": "", - "line_start": 21924, - "line_end": 21940, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21953, - "line_end": 21963, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21967, - "line_end": 21977, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21983, - "line_end": 21993, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 21999, - "line_end": 22009, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 22013, - "line_end": 22017, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 22023, - "line_end": 22027, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 22031, - "line_end": 22034, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 22040, - "line_end": 22043, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 22047, - "line_end": 22050, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 22054, - "line_end": 22057, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22070, - "line_end": 22075, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_begin", - "name": "begin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22079, - "line_end": 22082, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cbegin", - "name": "cbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22086, - "line_end": 22091, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 22095, - "line_end": 22100, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_end", - "name": "end", - "symbol_type": "Function", - "file_path": "", - "line_start": 22104, - "line_end": 22107, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_cend", - "name": "cend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22111, - "line_end": 22116, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22120, - "line_end": 22123, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rbegin", - "name": "rbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22127, - "line_end": 22130, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22134, - "line_end": 22137, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_rend", - "name": "rend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22141, - "line_end": 22144, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crbegin", - "name": "crbegin", - "symbol_type": "Function", - "file_path": "", - "line_start": 22148, - "line_end": 22151, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_crend", - "name": "crend", - "symbol_type": "Function", - "file_path": "", - "line_start": 22155, - "line_end": 22158, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22167, - "line_end": 22170, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_iterator_wrapper", - "name": "iterator_wrapper", - "symbol_type": "Function", - "file_path": "", - "line_start": 22178, - "line_end": 22181, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22185, - "line_end": 22188, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_items", - "name": "items", - "symbol_type": "Function", - "file_path": "", - "line_start": 22192, - "line_end": 22195, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 22208, - "line_end": 22243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22247, - "line_end": 22282, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_max_size", - "name": "max_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 22286, - "line_end": 22316, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 22329, - "line_end": 22386, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22390, - "line_end": 22411, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_713", - "name": "function_713", - "symbol_type": "Function", - "file_path": "", - "line_start": 22415, - "line_end": 22419, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22423, - "line_end": 22443, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_715", - "name": "function_715", - "symbol_type": "Function", - "file_path": "", - "line_start": 22447, - "line_end": 22451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22455, - "line_end": 22474, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_717", - "name": "function_717", - "symbol_type": "Function", - "file_path": "", - "line_start": 22478, - "line_end": 22482, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_push_back", - "name": "push_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22486, - "line_end": 22498, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_719", - "name": "function_719", - "symbol_type": "Function", - "file_path": "", - "line_start": 22502, - "line_end": 22506, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace_back", - "name": "emplace_back", - "symbol_type": "Function", - "file_path": "", - "line_start": 22511, - "line_end": 22531, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_emplace", - "name": "emplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 22536, - "line_end": 22562, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert_iterator", - "name": "insert_iterator", - "symbol_type": "Function", - "file_path": "", - "line_start": 22568, - "line_end": 22583, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22587, - "line_end": 22603, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22607, - "line_end": 22610, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22614, - "line_end": 22630, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22634, - "line_end": 22661, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22665, - "line_end": 22681, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_insert", - "name": "insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 22685, - "line_end": 22706, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22710, - "line_end": 22713, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 22717, - "line_end": 22760, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22764, - "line_end": 22777, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22781, - "line_end": 22789, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22793, - "line_end": 22805, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22809, - "line_end": 22821, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22825, - "line_end": 22837, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22841, - "line_end": 22853, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 22857, - "line_end": 22869, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_if", - "name": "if", - "symbol_type": "Function", - "file_path": "", - "line_start": 22946, - "line_end": 22949, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_compares_unordered", - "name": "compares_unordered", - "symbol_type": "Function", - "file_path": "", - "line_start": 22975, - "line_end": 22978, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_740", - "name": "function_740", - "symbol_type": "Function", - "file_path": "", - "line_start": 22984, - "line_end": 22995, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_741", - "name": "function_741", - "symbol_type": "Function", - "file_path": "", - "line_start": 23001, - "line_end": 23004, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_742", - "name": "function_742", - "symbol_type": "Function", - "file_path": "", - "line_start": 23008, - "line_end": 23015, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_743", - "name": "function_743", - "symbol_type": "Function", - "file_path": "", - "line_start": 23019, - "line_end": 23028, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_744", - "name": "function_744", - "symbol_type": "Function", - "file_path": "", - "line_start": 23034, - "line_end": 23037, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_745", - "name": "function_745", - "symbol_type": "Function", - "file_path": "", - "line_start": 23046, - "line_end": 23053, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_746", - "name": "function_746", - "symbol_type": "Function", - "file_path": "", - "line_start": 23059, - "line_end": 23062, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_747", - "name": "function_747", - "symbol_type": "Function", - "file_path": "", - "line_start": 23067, - "line_end": 23074, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_748", - "name": "function_748", - "symbol_type": "Function", - "file_path": "", - "line_start": 23080, - "line_end": 23083, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_749", - "name": "function_749", - "symbol_type": "Function", - "file_path": "", - "line_start": 23088, - "line_end": 23098, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_750", - "name": "function_750", - "symbol_type": "Function", - "file_path": "", - "line_start": 23104, - "line_end": 23107, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_751", - "name": "function_751", - "symbol_type": "Function", - "file_path": "", - "line_start": 23113, - "line_end": 23116, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_752", - "name": "function_752", - "symbol_type": "Function", - "file_path": "", - "line_start": 23120, - "line_end": 23127, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_753", - "name": "function_753", - "symbol_type": "Function", - "file_path": "", - "line_start": 23133, - "line_end": 23136, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_754", - "name": "function_754", - "symbol_type": "Function", - "file_path": "", - "line_start": 23142, - "line_end": 23145, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_755", - "name": "function_755", - "symbol_type": "Function", - "file_path": "", - "line_start": 23149, - "line_end": 23520, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_756", - "name": "function_756", - "symbol_type": "Function", - "file_path": "", - "line_start": 23170, - "line_end": 23173, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_757", - "name": "function_757", - "symbol_type": "Function", - "file_path": "", - "line_start": 23177, - "line_end": 23184, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_758", - "name": "function_758", - "symbol_type": "Function", - "file_path": "", - "line_start": 23190, - "line_end": 23193, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_759", - "name": "function_759", - "symbol_type": "Function", - "file_path": "", - "line_start": 23199, - "line_end": 23202, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_760", - "name": "function_760", - "symbol_type": "Function", - "file_path": "", - "line_start": 23206, - "line_end": 23214, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_761", - "name": "function_761", - "symbol_type": "Function", - "file_path": "", - "line_start": 23220, - "line_end": 23223, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_762", - "name": "function_762", - "symbol_type": "Function", - "file_path": "", - "line_start": 23229, - "line_end": 23232, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_763", - "name": "function_763", - "symbol_type": "Function", - "file_path": "", - "line_start": 23236, - "line_end": 23243, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_764", - "name": "function_764", - "symbol_type": "Function", - "file_path": "", - "line_start": 23249, - "line_end": 23252, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_765", - "name": "function_765", - "symbol_type": "Function", - "file_path": "", - "line_start": 23258, - "line_end": 23261, - "column_start": 11, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_766", - "name": "function_766", - "symbol_type": "Function", - "file_path": "", - "line_start": 23277, - "line_end": 23290, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23316, - "line_end": 23325, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23330, - "line_end": 23340, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23344, - "line_end": 23352, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23357, - "line_end": 23361, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23366, - "line_end": 23370, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 23374, - "line_end": 23378, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23384, - "line_end": 23393, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23399, - "line_end": 23408, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_sax_parse", - "name": "sax_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 23418, - "line_end": 23429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_776", - "name": "function_776", - "symbol_type": "Function", - "file_path": "", - "line_start": 23459, - "line_end": 23484, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_data", - "name": "data", - "symbol_type": "Function", - "file_path": "", - "line_start": 23499, - "line_end": 23502, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_data", - "name": "data", - "symbol_type": "Function", - "file_path": "", - "line_start": 23504, - "line_end": 23508, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_data", - "name": "data", - "symbol_type": "Function", - "file_path": "", - "line_start": 23510, - "line_end": 23510, - "column_start": 8, - "column_end": 34, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_data", - "name": "data", - "symbol_type": "Function", - "file_path": "", - "line_start": 23511, - "line_end": 23511, - "column_start": 8, - "column_end": 40, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_data", - "name": "data", - "symbol_type": "Function", - "file_path": "", - "line_start": 23512, - "line_end": 23512, - "column_start": 8, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_782", - "name": "function_782", - "symbol_type": "Function", - "file_path": "", - "line_start": 23516, - "line_end": 23519, - "column_start": 8, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23548, - "line_end": 23551, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_cbor", - "name": "to_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23555, - "line_end": 23558, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23562, - "line_end": 23567, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23571, - "line_end": 23574, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_msgpack", - "name": "to_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23578, - "line_end": 23581, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23585, - "line_end": 23592, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23596, - "line_end": 23600, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_ubjson", - "name": "to_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23604, - "line_end": 23608, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23612, - "line_end": 23619, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23623, - "line_end": 23627, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bjdata", - "name": "to_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23631, - "line_end": 23635, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23639, - "line_end": 23644, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23648, - "line_end": 23651, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_to_bson", - "name": "to_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23655, - "line_end": 23658, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23663, - "line_end": 23674, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23679, - "line_end": 23690, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23695, - "line_end": 23701, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_cbor", - "name": "from_cbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 23705, - "line_end": 23716, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23721, - "line_end": 23731, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23736, - "line_end": 23746, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23751, - "line_end": 23756, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_msgpack", - "name": "from_msgpack", - "symbol_type": "Function", - "file_path": "", - "line_start": 23760, - "line_end": 23770, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23775, - "line_end": 23785, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23790, - "line_end": 23800, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23805, - "line_end": 23810, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_ubjson", - "name": "from_ubjson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23814, - "line_end": 23824, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23829, - "line_end": 23839, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bjdata", - "name": "from_bjdata", - "symbol_type": "Function", - "file_path": "", - "line_start": 23844, - "line_end": 23854, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23859, - "line_end": 23869, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23874, - "line_end": 23884, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23889, - "line_end": 23894, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_from_bson", - "name": "from_bson", - "symbol_type": "Function", - "file_path": "", - "line_start": 23898, - "line_end": 23908, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_815", - "name": "function_815", - "symbol_type": "Function", - "file_path": "", - "line_start": 23920, - "line_end": 23923, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_816", - "name": "function_816", - "symbol_type": "Function", - "file_path": "", - "line_start": 23927, - "line_end": 23930, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_817", - "name": "function_817", - "symbol_type": "Function", - "file_path": "", - "line_start": 23934, - "line_end": 23937, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_818", - "name": "function_818", - "symbol_type": "Function", - "file_path": "", - "line_start": 23941, - "line_end": 23944, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23948, - "line_end": 23951, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23955, - "line_end": 23958, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23962, - "line_end": 23965, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_at", - "name": "at", - "symbol_type": "Function", - "file_path": "", - "line_start": 23969, - "line_end": 23972, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_flatten", - "name": "flatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23976, - "line_end": 23981, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_unflatten", - "name": "unflatten", - "symbol_type": "Function", - "file_path": "", - "line_start": 23985, - "line_end": 23988, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch_inplace", - "name": "patch_inplace", - "symbol_type": "Function", - "file_path": "", - "line_start": 24001, - "line_end": 24267, - "column_start": 4, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_patch", - "name": "patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24272, - "line_end": 24277, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_diff", - "name": "diff", - "symbol_type": "Function", - "file_path": "", - "line_start": 24281, - "line_end": 24412, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_merge_patch", - "name": "merge_patch", - "symbol_type": "Function", - "file_path": "", - "line_start": 24424, - "line_end": 24448, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_829", - "name": "function_829", - "symbol_type": "Function", - "file_path": "", - "line_start": 24455, - "line_end": 24459, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_830", - "name": "function_830", - "symbol_type": "Function", - "file_path": "", - "line_start": 24472, - "line_end": 24476, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_831", - "name": "function_831", - "symbol_type": "Function", - "file_path": "", - "line_start": 24484, - "line_end": 24488, - "column_start": 4, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_832", - "name": "function_832", - "symbol_type": "Function", - "file_path": "", - "line_start": 24492, - "line_end": 24546, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_833", - "name": "function_833", - "symbol_type": "Function", - "file_path": "", - "line_start": 24503, - "line_end": 24510, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_834", - "name": "function_834", - "symbol_type": "Function", - "file_path": "", - "line_start": 24506, - "line_end": 24509, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_835", - "name": "function_835", - "symbol_type": "Function", - "file_path": "", - "line_start": 24520, - "line_end": 24528, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_swap", - "name": "swap", - "symbol_type": "Function", - "file_path": "", - "line_start": 24536, - "line_end": 24542, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_make_void", - "name": "make_void", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 254, - "column_start": 25, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_nonesuch", - "name": "nonesuch", - "symbol_type": "Class", - "file_path": "", - "line_start": 266, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_detector", - "name": "detector", - "symbol_type": "Class", - "file_path": "", - "line_start": 280, - "line_end": 284, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_3", - "name": "class_3", - "symbol_type": "Class", - "file_path": "", - "line_start": 287, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_detected_lazy", - "name": "is_detected_lazy", - "symbol_type": "Class", - "file_path": "", - "line_start": 297, - "line_end": 297, - "column_start": 0, - "column_end": 54, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_would_call_std_", - "name": "would_call_std_", - "symbol_type": "Class", - "file_path": "", - "line_start": 2814, - "line_end": 2814, - "column_start": 4, - "column_end": 26, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_position_t", - "name": "position_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 3035, - "line_end": 3049, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_integer_sequence", - "name": "integer_sequence", - "symbol_type": "Class", - "file_path": "", - "line_start": 3122, - "line_end": 3129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Extend", - "name": "Extend", - "symbol_type": "Class", - "file_path": "", - "line_start": 3143, - "line_end": 3143, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_9", - "name": "class_9", - "symbol_type": "Class", - "file_path": "", - "line_start": 3147, - "line_end": 3150, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_10", - "name": "class_10", - "symbol_type": "Class", - "file_path": "", - "line_start": 3153, - "line_end": 3156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Gen", - "name": "Gen", - "symbol_type": "Class", - "file_path": "", - "line_start": 3161, - "line_end": 3165, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_12", - "name": "class_12", - "symbol_type": "Class", - "file_path": "", - "line_start": 3168, - "line_end": 3171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_priority_tag", - "name": "priority_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 3206, - "line_end": 3206, - "column_start": 21, - "column_end": 68, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_14", - "name": "class_14", - "symbol_type": "Class", - "file_path": "", - "line_start": 3207, - "line_end": 3207, - "column_start": 11, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_static_const", - "name": "static_const", - "symbol_type": "Class", - "file_path": "", - "line_start": 3211, - "line_end": 3214, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_types", - "name": "iterator_types", - "symbol_type": "Class", - "file_path": "", - "line_start": 3272, - "line_end": 3272, - "column_start": 0, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_17", - "name": "class_17", - "symbol_type": "Class", - "file_path": "", - "line_start": 3275, - "line_end": 3285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_traits", - "name": "iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3290, - "line_end": 3292, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_19", - "name": "class_19", - "symbol_type": "Class", - "file_path": "", - "line_start": 3295, - "line_end": 3298, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_20", - "name": "class_20", - "symbol_type": "Class", - "file_path": "", - "line_start": 3301, - "line_end": 3308, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_pointer", - "name": "json_pointer", - "symbol_type": "Class", - "file_path": "", - "line_start": 3416, - "line_end": 3416, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_ordered_map", - "name": "ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 3427, - "line_end": 3427, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json", - "name": "is_basic_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3463, - "line_end": 3463, - "column_start": 19, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_basic_json_context", - "name": "is_basic_json_context", - "symbol_type": "Class", - "file_path": "", - "line_start": 3472, - "line_end": 3476, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3483, - "line_end": 3483, - "column_start": 0, - "column_end": 14, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_ref", - "name": "is_json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 3486, - "line_end": 3486, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_27", - "name": "class_27", - "symbol_type": "Class", - "file_path": "", - "line_start": 3489, - "line_end": 3489, - "column_start": 0, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_from_json", - "name": "has_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3527, - "line_end": 3527, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_getable", - "name": "is_getable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3534, - "line_end": 3537, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_30", - "name": "class_30", - "symbol_type": "Class", - "file_path": "", - "line_start": 3540, - "line_end": 3547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_non_default_from_json", - "name": "has_non_default_from_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3552, - "line_end": 3552, - "column_start": 0, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_32", - "name": "class_32", - "symbol_type": "Class", - "file_path": "", - "line_start": 3555, - "line_end": 3562, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_to_json", - "name": "has_to_json", - "symbol_type": "Class", - "file_path": "", - "line_start": 3567, - "line_end": 3567, - "column_start": 0, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_34", - "name": "class_34", - "symbol_type": "Class", - "file_path": "", - "line_start": 3570, - "line_end": 3577, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_has_key_compare", - "name": "has_key_compare", - "symbol_type": "Class", - "file_path": "", - "line_start": 3583, - "line_end": 3583, - "column_start": 0, - "column_end": 99, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_actual_object_comparator", - "name": "actual_object_comparator", - "symbol_type": "Class", - "file_path": "", - "line_start": 3587, - "line_end": 3593, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_char_traits", - "name": "char_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3604, - "line_end": 3605, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_38", - "name": "class_38", - "symbol_type": "Class", - "file_path": "", - "line_start": 3609, - "line_end": 3629, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_39", - "name": "class_39", - "symbol_type": "Class", - "file_path": "", - "line_start": 3633, - "line_end": 3653, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_conjunction", - "name": "conjunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 3660, - "line_end": 3660, - "column_start": 19, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_41", - "name": "class_41", - "symbol_type": "Class", - "file_path": "", - "line_start": 3661, - "line_end": 3661, - "column_start": 18, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_42", - "name": "class_42", - "symbol_type": "Class", - "file_path": "", - "line_start": 3663, - "line_end": 3664, - "column_start": 0, - "column_end": 79, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_negation", - "name": "negation", - "symbol_type": "Class", - "file_path": "", - "line_start": 3667, - "line_end": 3667, - "column_start": 18, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_default_constructible", - "name": "is_default_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3673, - "line_end": 3673, - "column_start": 0, - "column_end": 69, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_45", - "name": "class_45", - "symbol_type": "Class", - "file_path": "", - "line_start": 3676, - "line_end": 3677, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_46", - "name": "class_46", - "symbol_type": "Class", - "file_path": "", - "line_start": 3680, - "line_end": 3681, - "column_start": 0, - "column_end": 88, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_47", - "name": "class_47", - "symbol_type": "Class", - "file_path": "", - "line_start": 3684, - "line_end": 3685, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_48", - "name": "class_48", - "symbol_type": "Class", - "file_path": "", - "line_start": 3688, - "line_end": 3689, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible", - "name": "is_constructible", - "symbol_type": "Class", - "file_path": "", - "line_start": 3692, - "line_end": 3692, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_50", - "name": "class_50", - "symbol_type": "Class", - "file_path": "", - "line_start": 3695, - "line_end": 3695, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_51", - "name": "class_51", - "symbol_type": "Class", - "file_path": "", - "line_start": 3698, - "line_end": 3698, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_52", - "name": "class_52", - "symbol_type": "Class", - "file_path": "", - "line_start": 3701, - "line_end": 3701, - "column_start": 0, - "column_end": 91, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_53", - "name": "class_53", - "symbol_type": "Class", - "file_path": "", - "line_start": 3704, - "line_end": 3704, - "column_start": 0, - "column_end": 103, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_traits", - "name": "is_iterator_traits", - "symbol_type": "Class", - "file_path": "", - "line_start": 3707, - "line_end": 3707, - "column_start": 0, - "column_end": 46, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_55", - "name": "class_55", - "symbol_type": "Class", - "file_path": "", - "line_start": 3710, - "line_end": 3722, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_range", - "name": "is_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 3725, - "line_end": 3741, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_complete_type", - "name": "is_complete_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3754, - "line_end": 3754, - "column_start": 0, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_58", - "name": "class_58", - "symbol_type": "Class", - "file_path": "", - "line_start": 3757, - "line_end": 3757, - "column_start": 0, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type_impl", - "name": "is_compatible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3761, - "line_end": 3761, - "column_start": 0, - "column_end": 58, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_60", - "name": "class_60", - "symbol_type": "Class", - "file_path": "", - "line_start": 3764, - "line_end": 3777, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_object_type", - "name": "is_compatible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3780, - "line_end": 3781, - "column_start": 0, - "column_end": 76, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type_impl", - "name": "is_constructible_object_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3785, - "line_end": 3785, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_63", - "name": "class_63", - "symbol_type": "Class", - "file_path": "", - "line_start": 3788, - "line_end": 3809, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_object_type", - "name": "is_constructible_object_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3812, - "line_end": 3814, - "column_start": 0, - "column_end": 33, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_string_type", - "name": "is_compatible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3817, - "line_end": 3821, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_string_type", - "name": "is_constructible_string_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3824, - "line_end": 3838, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type_impl", - "name": "is_compatible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3841, - "line_end": 3841, - "column_start": 0, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_68", - "name": "class_68", - "symbol_type": "Class", - "file_path": "", - "line_start": 3844, - "line_end": 3856, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_array_type", - "name": "is_compatible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3859, - "line_end": 3860, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type_impl", - "name": "is_constructible_array_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3863, - "line_end": 3863, - "column_start": 0, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_71", - "name": "class_71", - "symbol_type": "Class", - "file_path": "", - "line_start": 3866, - "line_end": 3870, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_72", - "name": "class_72", - "symbol_type": "Class", - "file_path": "", - "line_start": 3873, - "line_end": 3900, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_array_type", - "name": "is_constructible_array_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3903, - "line_end": 3904, - "column_start": 0, - "column_end": 80, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type_impl", - "name": "is_compatible_integer_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3908, - "line_end": 3908, - "column_start": 0, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_75", - "name": "class_75", - "symbol_type": "Class", - "file_path": "", - "line_start": 3911, - "line_end": 3926, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_integer_type", - "name": "is_compatible_integer_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3929, - "line_end": 3931, - "column_start": 0, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type_impl", - "name": "is_compatible_type_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 3934, - "line_end": 3934, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_78", - "name": "class_78", - "symbol_type": "Class", - "file_path": "", - "line_start": 3937, - "line_end": 3943, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_compatible_type", - "name": "is_compatible_type", - "symbol_type": "Class", - "file_path": "", - "line_start": 3946, - "line_end": 3947, - "column_start": 0, - "column_end": 63, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_constructible_tuple", - "name": "is_constructible_tuple", - "symbol_type": "Class", - "file_path": "", - "line_start": 3950, - "line_end": 3950, - "column_start": 0, - "column_end": 50, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_81", - "name": "class_81", - "symbol_type": "Class", - "file_path": "", - "line_start": 3953, - "line_end": 3953, - "column_start": 0, - "column_end": 102, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_json_iterator_of", - "name": "is_json_iterator_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3956, - "line_end": 3956, - "column_start": 0, - "column_end": 47, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_83", - "name": "class_83", - "symbol_type": "Class", - "file_path": "", - "line_start": 3959, - "line_end": 3959, - "column_start": 0, - "column_end": 95, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_84", - "name": "class_84", - "symbol_type": "Class", - "file_path": "", - "line_start": 3962, - "line_end": 3963, - "column_start": 0, - "column_end": 2, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_specialization_of", - "name": "is_specialization_of", - "symbol_type": "Class", - "file_path": "", - "line_start": 3967, - "line_end": 3967, - "column_start": 0, - "column_end": 48, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_86", - "name": "class_86", - "symbol_type": "Class", - "file_path": "", - "line_start": 3970, - "line_end": 3970, - "column_start": 0, - "column_end": 74, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_comparable", - "name": "is_comparable", - "symbol_type": "Class", - "file_path": "", - "line_start": 3977, - "line_end": 3977, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_88", - "name": "class_88", - "symbol_type": "Class", - "file_path": "", - "line_start": 3980, - "line_end": 3983, - "column_start": 0, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_ordered_map", - "name": "is_ordered_map", - "symbol_type": "Class", - "file_path": "", - "line_start": 4033, - "line_end": 4046, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_two", - "name": "two", - "symbol_type": "Class", - "file_path": "", - "line_start": 4037, - "line_end": 4040, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl2", - "name": "value_in_range_of_impl2", - "symbol_type": "Class", - "file_path": "", - "line_start": 4083, - "line_end": 4083, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_92", - "name": "class_92", - "symbol_type": "Class", - "file_path": "", - "line_start": 4086, - "line_end": 4093, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_93", - "name": "class_93", - "symbol_type": "Class", - "file_path": "", - "line_start": 4096, - "line_end": 4103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_94", - "name": "class_94", - "symbol_type": "Class", - "file_path": "", - "line_start": 4106, - "line_end": 4113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_95", - "name": "class_95", - "symbol_type": "Class", - "file_path": "", - "line_start": 4116, - "line_end": 4124, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_value_in_range_of_impl1", - "name": "value_in_range_of_impl1", - "symbol_type": "Class", - "file_path": "", - "line_start": 4129, - "line_end": 4129, - "column_start": 0, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_97", - "name": "class_97", - "symbol_type": "Class", - "file_path": "", - "line_start": 4132, - "line_end": 4138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_98", - "name": "class_98", - "symbol_type": "Class", - "file_path": "", - "line_start": 4141, - "line_end": 4147, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_c_string", - "name": "is_c_string", - "symbol_type": "Class", - "file_path": "", - "line_start": 4181, - "line_end": 4181, - "column_start": 0, - "column_end": 61, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_transparent", - "name": "is_transparent", - "symbol_type": "Class", - "file_path": "", - "line_start": 4203, - "line_end": 4203, - "column_start": 0, - "column_end": 67, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_exception", - "name": "exception", - "symbol_type": "Class", - "file_path": "", - "line_start": 4371, - "line_end": 4465, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parse_error", - "name": "parse_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4469, - "line_end": 4518, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_invalid_iterator", - "name": "invalid_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 4522, - "line_end": 4536, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_type_error", - "name": "type_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4540, - "line_end": 4553, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_out_of_range", - "name": "out_of_range", - "symbol_type": "Class", - "file_path": "", - "line_start": 4557, - "line_end": 4570, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_other_error", - "name": "other_error", - "symbol_type": "Class", - "file_path": "", - "line_start": 4574, - "line_end": 4587, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_identity_tag", - "name": "identity_tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 4615, - "line_end": 4615, - "column_start": 19, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_from_json_fn", - "name": "from_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5098, - "line_end": 5107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 5185, - "line_end": 5303, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 5306, - "line_end": 5336, - "column_start": 32, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_111", - "name": "class_111", - "symbol_type": "Class", - "file_path": "", - "line_start": 5371, - "line_end": 5372, - "column_start": 0, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_112", - "name": "class_112", - "symbol_type": "Class", - "file_path": "", - "line_start": 5375, - "line_end": 5381, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_external_constructor", - "name": "external_constructor", - "symbol_type": "Class", - "file_path": "", - "line_start": 5419, - "line_end": 5419, - "column_start": 18, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_114", - "name": "class_114", - "symbol_type": "Class", - "file_path": "", - "line_start": 5422, - "line_end": 5432, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_115", - "name": "class_115", - "symbol_type": "Class", - "file_path": "", - "line_start": 5435, - "line_end": 5465, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_116", - "name": "class_116", - "symbol_type": "Class", - "file_path": "", - "line_start": 5468, - "line_end": 5487, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_117", - "name": "class_117", - "symbol_type": "Class", - "file_path": "", - "line_start": 5490, - "line_end": 5500, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_118", - "name": "class_118", - "symbol_type": "Class", - "file_path": "", - "line_start": 5503, - "line_end": 5513, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_119", - "name": "class_119", - "symbol_type": "Class", - "file_path": "", - "line_start": 5516, - "line_end": 5526, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_120", - "name": "class_120", - "symbol_type": "Class", - "file_path": "", - "line_start": 5529, - "line_end": 5596, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_121", - "name": "class_121", - "symbol_type": "Class", - "file_path": "", - "line_start": 5599, - "line_end": 5634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_to_json_fn", - "name": "to_json_fn", - "symbol_type": "Class", - "file_path": "", - "line_start": 5799, - "line_end": 5806, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_adl_serializer", - "name": "adl_serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 5832, - "line_end": 5862, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_input_stream_adapter", - "name": "input_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6225, - "line_end": 6274, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter", - "name": "iterator_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6280, - "line_end": 6312, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_helper", - "name": "wide_string_input_helper", - "symbol_type": "Class", - "file_path": "", - "line_start": 6315, - "line_end": 6315, - "column_start": 0, - "column_end": 31, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_127", - "name": "class_127", - "symbol_type": "Class", - "file_path": "", - "line_start": 6318, - "line_end": 6373, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_128", - "name": "class_128", - "symbol_type": "Class", - "file_path": "", - "line_start": 6376, - "line_end": 6435, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_wide_string_input_adapter", - "name": "wide_string_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6439, - "line_end": 6480, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iterator_input_adapter_factory", - "name": "iterator_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6483, - "line_end": 6493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_iterator_of_multibyte", - "name": "is_iterator_of_multibyte", - "symbol_type": "Class", - "file_path": "", - "line_start": 6496, - "line_end": 6503, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_132", - "name": "class_132", - "symbol_type": "Class", - "file_path": "", - "line_start": 6506, - "line_end": 6517, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_container_input_adapter_factory", - "name": "container_input_adapter_factory", - "symbol_type": "Class", - "file_path": "", - "line_start": 6538, - "line_end": 6538, - "column_start": 0, - "column_end": 41, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_134", - "name": "class_134", - "symbol_type": "Class", - "file_path": "", - "line_start": 6541, - "line_end": 6550, - "column_start": 0, - "column_end": 8, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_span_input_adapter", - "name": "span_input_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 6604, - "line_end": 6630, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_dom_callback_parser", - "name": "json_sax_dom_callback_parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 6982, - "line_end": 7286, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_sax_acceptor", - "name": "json_sax_acceptor", - "symbol_type": "Class", - "file_path": "", - "line_start": 7289, - "line_end": 7362, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer_base", - "name": "lexer_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 7406, - "line_end": 7476, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_lexer", - "name": "lexer", - "symbol_type": "Class", - "file_path": "", - "line_start": 7483, - "line_end": 8682, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax", - "name": "is_sax", - "symbol_type": "Class", - "file_path": "", - "line_start": 9085, - "line_end": 9113, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_is_sax_static_asserts", - "name": "is_sax_static_asserts", - "symbol_type": "Class", - "file_path": "", - "line_start": 9116, - "line_end": 9167, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_reader", - "name": "binary_reader", - "symbol_type": "Class", - "file_path": "", - "line_start": 9211, - "line_end": 12146, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_parser", - "name": "parser", - "symbol_type": "Class", - "file_path": "", - "line_start": 12228, - "line_end": 12684, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_primitive_iterator_t", - "name": "primitive_iterator_t", - "symbol_type": "Class", - "file_path": "", - "line_start": 12732, - "line_end": 12832, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_internal_iterator", - "name": "internal_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 12848, - "line_end": 12856, - "column_start": 33, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy", - "name": "iteration_proxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 12895, - "line_end": 12895, - "column_start": 32, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iteration_proxy_value", - "name": "iteration_proxy_value", - "symbol_type": "Class", - "file_path": "", - "line_start": 12896, - "line_end": 12896, - "column_start": 32, - "column_end": 59, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_iter_impl", - "name": "iter_impl", - "symbol_type": "Class", - "file_path": "", - "line_start": 12915, - "line_end": 13103, - "column_start": 0, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_reverse_iterator", - "name": "json_reverse_iterator", - "symbol_type": "Class", - "file_path": "", - "line_start": 13668, - "line_end": 13751, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_default_base", - "name": "json_default_base", - "symbol_type": "Class", - "file_path": "", - "line_start": 13788, - "line_end": 13788, - "column_start": 0, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_json_ref", - "name": "json_ref", - "symbol_type": "Class", - "file_path": "", - "line_start": 14819, - "line_end": 14872, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter_protocol", - "name": "output_adapter_protocol", - "symbol_type": "Class", - "file_path": "", - "line_start": 14944, - "line_end": 14955, - "column_start": 28, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_vector_adapter", - "name": "output_vector_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14963, - "line_end": 14983, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_stream_adapter", - "name": "output_stream_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 14988, - "line_end": 15008, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_string_adapter", - "name": "output_string_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 15013, - "line_end": 15033, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_output_adapter", - "name": "output_adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 15036, - "line_end": 15058, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_binary_writer", - "name": "binary_writer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15078, - "line_end": 16874, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_diyfp", - "name": "diyfp", - "symbol_type": "Class", - "file_path": "", - "line_start": 16964, - "line_end": 17080, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_boundaries", - "name": "boundaries", - "symbol_type": "Class", - "file_path": "", - "line_start": 17082, - "line_end": 17087, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_cached_power", - "name": "cached_power", - "symbol_type": "Class", - "file_path": "", - "line_start": 17221, - "line_end": 17226, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_serializer", - "name": "serializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 18059, - "line_end": 18595, - "column_start": 0, - "column_end": 9, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_class_162", - "name": "class_162", - "symbol_type": "Class", - "file_path": "", - "line_start": 24514, - "line_end": 24529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "InProcessTransport.cpp", - "path": "./development/nyamesh/src/transport/InProcessTransport.cpp", - "language": "cpp", - "size_bytes": 17887, - "total_lines": 477, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.193477693Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 112, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 212, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 251, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 278, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 318, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 322, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 337, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 347, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 355, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 382, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 389, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 396, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 408, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createInProcessTransport", - "name": "createInProcessTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 416, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createInProcessTransport", - "name": "createInProcessTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 420, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_enableMessageBusDebug", - "name": "enableMessageBusDebug", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_isMessageBusDebugEnabled", - "name": "isMessageBusDebugEnabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 451, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_showMessageBusStats", - "name": "showMessageBusStats", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 474, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "InProcessTransport.h", - "path": "./development/nyamesh/src/transport/InProcessTransport.h", - "language": "c", - "size_bytes": 5050, - "total_lines": 161, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.195718966Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_InProcessMessageBus", - "name": "InProcessMessageBus", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 4, - "column_end": 36, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_InProcessMessageBus", - "name": "InProcessMessageBus", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_InProcessTransport", - "name": "InProcessTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 36, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_InProcessTransport", - "name": "InProcessTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "MillionPeerP2PTransport.cpp", - "path": "./development/nyamesh/src/transport/MillionPeerP2PTransport.cpp", - "language": "cpp", - "size_bytes": 31309, - "total_lines": 865, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.199614443Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 89, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 0, - "column_end": 89, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 172, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 216, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 222, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 273, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 312, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 353, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 420, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 457, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 500, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 547, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 574, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 598, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 625, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 684, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 690, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 696, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 708, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 729, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 747, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 766, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 782, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 803, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 818, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 820, - "line_end": 826, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 834, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 836, - "line_end": 843, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 845, - "line_end": 855, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 857, - "line_end": 862, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "MillionPeerP2PTransport.h", - "path": "./development/nyamesh/src/transport/MillionPeerP2PTransport.h", - "language": "c", - "size_bytes": 13029, - "total_lines": 380, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.202379167Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_MillionPeerConfig", - "name": "MillionPeerConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_CompressedP2PMessage", - "name": "CompressedP2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_RoutingEntry", - "name": "RoutingEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 4, - "column_end": 29, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_RoutingEntry", - "name": "RoutingEntry", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 4, - "column_end": 85, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 157, - "column_start": 4, - "column_end": 57, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 4, - "column_end": 84, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 289, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 295, - "column_start": 4, - "column_end": 65, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 301, - "column_start": 4, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 313, - "column_start": 4, - "column_end": 73, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_MillionPeerConfig", - "name": "MillionPeerConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_CompressedP2PMessage", - "name": "CompressedP2PMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 80, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_RoutingEntry", - "name": "RoutingEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_DistributedHashTable", - "name": "DistributedHashTable", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MillionScaleMessageQueue", - "name": "MillionScaleMessageQueue", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 159, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MillionPeerP2PTransport", - "name": "MillionPeerP2PTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 172, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "MillionPeerP2PTransport_Pure.h", - "path": "./development/nyamesh/src/transport/MillionPeerP2PTransport_Pure.h", - "language": "c", - "size_bytes": 3017, - "total_lines": 86, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.204204475Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_MillionPeerP2PTransportPure", - "name": "MillionPeerP2PTransportPure", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMesh2TransportAdapter.cpp", - "path": "./development/nyamesh/src/transport/NyaMesh2TransportAdapter.cpp", - "language": "cpp", - "size_bytes": 16358, - "total_lines": 466, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.206834183Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 115, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 210, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 215, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 258, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 296, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 336, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 338, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 383, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 392, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createNyaMesh2TransportAdapter", - "name": "createNyaMesh2TransportAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 414, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createNyaMesh2TransportAdapter", - "name": "createNyaMesh2TransportAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 421, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForTextEditing", - "name": "createRequirementsForTextEditing", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 434, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForFileSharing", - "name": "createRequirementsForFileSharing", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForSearch", - "name": "createRequirementsForSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 450, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_getRecommendedTransportType", - "name": "getRecommendedTransportType", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 463, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMesh2TransportAdapter.h", - "path": "./development/nyamesh/src/transport/NyaMesh2TransportAdapter.h", - "language": "c", - "size_bytes": 8904, - "total_lines": 333, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.209128382Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 4, - "column_end": 53, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 212, - "column_start": 4, - "column_end": 51, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_SafeMessage", - "name": "SafeMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 4, - "column_end": 22, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_AdapterRequirements", - "name": "AdapterRequirements", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMesh2TransportAdapter", - "name": "NyaMesh2TransportAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 259, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMeshTransport.cpp", - "path": "./development/nyamesh/src/transport/NyaMeshTransport.cpp", - "language": "cpp", - "size_bytes": 409, - "total_lines": 15, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.210757855Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "NyaMeshTransport.h", - "path": "./development/nyamesh/src/transport/NyaMeshTransport.h", - "language": "c", - "size_bytes": 21653, - "total_lines": 611, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.213637998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Capability", - "name": "Capability", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 107, - "column_start": 4, - "column_end": 37, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Capability", - "name": "Capability", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 185, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Neighbor", - "name": "Neighbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 4, - "column_end": 25, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_Neighbor", - "name": "Neighbor", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 128, - "column_start": 4, - "column_end": 151, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_NyaMeshTransport", - "name": "NyaMeshTransport", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 321, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 425, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 451, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 523, - "line_end": 535, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 547, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 559, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 577, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 585, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 590, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 596, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 598, - "line_end": 602, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 604, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TransportBase", - "name": "TransportBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 43, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Intent", - "name": "Intent", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Capability", - "name": "Capability", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 112, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_Neighbor", - "name": "Neighbor", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMeshTransport", - "name": "NyaMeshTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 608, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "P2PTransport.cpp", - "path": "./development/nyamesh/src/transport/P2PTransport.cpp", - "language": "cpp", - "size_bytes": 3200, - "total_lines": 109, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.215952175Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 15, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "P2PTransport.h", - "path": "./development/nyamesh/src/transport/P2PTransport.h", - "language": "c", - "size_bytes": 10513, - "total_lines": 345, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.218156728Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_P2PTransportConfig", - "name": "P2PTransportConfig", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 4, - "column_end": 35, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PNode", - "name": "P2PNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 65, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PNode", - "name": "P2PNode", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 67, - "column_start": 4, - "column_end": 83, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 4, - "column_end": 27, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 308, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 4, - "column_end": 60, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 320, - "column_start": 4, - "column_end": 62, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_P2PTransportConfig", - "name": "P2PTransportConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PNode", - "name": "P2PNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PMessage", - "name": "P2PMessage", - "symbol_type": "Class", - "file_path": "", - "line_start": 90, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PTransport", - "name": "P2PTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 134, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "P2PTransportAdapter.cpp", - "path": "./development/nyamesh/src/transport/P2PTransportAdapter.cpp", - "language": "cpp", - "size_bytes": 24141, - "total_lines": 701, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.221603448Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_6", - "name": "function_6", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_7", - "name": "function_7", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_8", - "name": "function_8", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_9", - "name": "function_9", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 143, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_10", - "name": "function_10", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_11", - "name": "function_11", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 171, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_12", - "name": "function_12", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_13", - "name": "function_13", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 192, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_14", - "name": "function_14", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_15", - "name": "function_15", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 229, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_16", - "name": "function_16", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_17", - "name": "function_17", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_18", - "name": "function_18", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 267, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_19", - "name": "function_19", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_20", - "name": "function_20", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 280, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_21", - "name": "function_21", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 285, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_22", - "name": "function_22", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 293, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_23", - "name": "function_23", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_24", - "name": "function_24", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 321, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_25", - "name": "function_25", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 328, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_26", - "name": "function_26", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 349, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_27", - "name": "function_27", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 361, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_28", - "name": "function_28", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_29", - "name": "function_29", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 420, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_30", - "name": "function_30", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 446, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_31", - "name": "function_31", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 451, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_32", - "name": "function_32", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 463, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_33", - "name": "function_33", - "symbol_type": "Function", - "file_path": "", - "line_start": 465, - "line_end": 475, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_34", - "name": "function_34", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 484, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_35", - "name": "function_35", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 493, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_36", - "name": "function_36", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 498, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_37", - "name": "function_37", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 515, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_38", - "name": "function_38", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 519, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_39", - "name": "function_39", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 524, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_40", - "name": "function_40", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 529, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_41", - "name": "function_41", - "symbol_type": "Function", - "file_path": "", - "line_start": 531, - "line_end": 534, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_42", - "name": "function_42", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 540, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_43", - "name": "function_43", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 554, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_44", - "name": "function_44", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 560, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_45", - "name": "function_45", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 564, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_46", - "name": "function_46", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 576, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_47", - "name": "function_47", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 586, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_48", - "name": "function_48", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 616, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_49", - "name": "function_49", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 626, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createP2PTransportAdapter", - "name": "createP2PTransportAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 632, - "line_end": 634, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createP2PTransportAdapter", - "name": "createP2PTransportAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 640, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createP2PTransportAdapter", - "name": "createP2PTransportAdapter", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 646, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForTextEditing", - "name": "createRequirementsForTextEditing", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 662, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForFileSharing", - "name": "createRequirementsForFileSharing", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 674, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForSearch", - "name": "createRequirementsForSearch", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 686, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_createRequirementsForLargeScale", - "name": "createRequirementsForLargeScale", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 698, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "P2PTransportAdapter.h", - "path": "./development/nyamesh/src/transport/P2PTransportAdapter.h", - "language": "c", - "size_bytes": 14099, - "total_lines": 375, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.224491662Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 4, - "column_end": 45, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 4, - "column_end": 72, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_4", - "name": "function_4", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 4, - "column_end": 75, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_5", - "name": "function_5", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 4, - "column_end": 82, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TransportRequirements", - "name": "TransportRequirements", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TransportStats", - "name": "TransportStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_UnifiedP2PInterface", - "name": "UnifiedP2PInterface", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_NyaMesh2Adapter", - "name": "NyaMesh2Adapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_MillionPeerAdapter", - "name": "MillionPeerAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 161, - "line_end": 185, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_P2PTransportAdapter", - "name": "P2PTransportAdapter", - "symbol_type": "Class", - "file_path": "", - "line_start": 197, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "TransportBase.h", - "path": "./development/nyamesh/src/transport/TransportBase.h", - "language": "c", - "size_bytes": 2517, - "total_lines": 101, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.226394983Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_TransportBase", - "name": "TransportBase", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 4, - "column_end": 30, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 41, - "column_start": 4, - "column_end": 39, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_TransportBase", - "name": "TransportBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "TransportInterface.h", - "path": "./development/nyamesh/src/transport/TransportInterface.h", - "language": "c", - "size_bytes": 2342, - "total_lines": 90, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:47.227999980Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_function_0", - "name": "function_0", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 44, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_NyaMesh", - "name": "NyaMesh", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 0, - "column_end": 13, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "cpp_class_TransportInterface", - "name": "TransportInterface", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_runner.js", - "path": "./development/wasm_demos/test_runner.js", - "language": "javascript", - "size_bytes": 1409, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.687757605Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "runWasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 40, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_notepad.rs", - "path": "./examples/debug_notepad.rs", - "language": "rust", - "size_bytes": 2717, - "total_lines": 86, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.944307280Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 4, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 17, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 84, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 66, - "column_start": 26, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugApp", - "name": "DebugApp", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_explorer.rs", - "path": "./examples/nyash_explorer.rs", - "language": "rust", - "size_bytes": 16123, - "total_lines": 381, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.963173477Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 33, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 59, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_drives", - "name": "refresh_drives", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_bytes", - "name": "format_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 235, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 234, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 218, - "column_start": 47, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 227, - "column_start": 41, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 44, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 246, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 245, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 256, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 255, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 379, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 360, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 356, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 355, - "column_start": 62, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 354, - "column_start": 42, - "column_end": 29, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 300, - "column_start": 44, - "column_end": 33, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 353, - "column_start": 44, - "column_end": 33, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 321, - "column_start": 54, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 378, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 370, - "column_start": 60, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 371, - "column_start": 59, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DriveInfo", - "name": "DriveInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_NyashExplorer", - "name": "NyashExplorer", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_explorer_with_icons.rs", - "path": "./examples/nyash_explorer_with_icons.rs", - "language": "rust", - "size_bytes": 24111, - "total_lines": 576, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.971193290Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_drive_icon", - "name": "get_drive_icon", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_drive_icon", - "name": "get_drive_icon", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_bmp_icon", - "name": "load_bmp_icon", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_dummy_icon", - "name": "create_dummy_icon", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_drives", - "name": "refresh_drives", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_bytes", - "name": "format_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 391, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 575, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 424, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 423, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 407, - "column_start": 47, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 416, - "column_start": 41, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 422, - "column_start": 44, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 435, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 434, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 445, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 444, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 443, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 574, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 555, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 551, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 550, - "column_start": 91, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 549, - "column_start": 42, - "column_end": 29, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 495, - "column_start": 44, - "column_end": 33, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 548, - "column_start": 44, - "column_end": 33, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 509, - "line_end": 516, - "column_start": 54, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 573, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 565, - "column_start": 60, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 566, - "column_start": 59, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DriveInfo", - "name": "DriveInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_NyashExplorer", - "name": "NyashExplorer", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_notepad_jp.rs", - "path": "./examples/nyash_notepad_jp.rs", - "language": "rust", - "size_bytes": 8741, - "total_lines": 208, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.978621397Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 98, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 97, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 78, - "column_start": 47, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 87, - "column_start": 41, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 96, - "column_start": 44, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 111, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 110, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 109, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 206, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 150, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 163, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 205, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashNotepad", - "name": "NyashNotepad", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_notepad.rs", - "path": "./examples/simple_notepad.rs", - "language": "rust", - "size_bytes": 5516, - "total_lines": 137, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.988121064Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 17, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 61, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 60, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 46, - "column_start": 47, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 41, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 59, - "column_start": 44, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 71, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 70, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 135, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 99, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 85, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 90, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 112, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 134, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashNotepad", - "name": "NyashNotepad", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_notepad_ascii.rs", - "path": "./examples/simple_notepad_ascii.rs", - "language": "rust", - "size_bytes": 6406, - "total_lines": 163, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.992819871Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 17, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 59, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 58, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 45, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 161, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 105, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 118, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 160, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashNotepad", - "name": "NyashNotepad", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_notepad_v2.rs", - "path": "./examples/simple_notepad_v2.rs", - "language": "rust", - "size_bytes": 4998, - "total_lines": 134, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:48.997553259Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 17, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 59, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 58, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 45, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 69, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 132, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 96, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 109, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 131, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashNotepad", - "name": "NyashNotepad", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_notepad_win.rs", - "path": "./examples/simple_notepad_win.rs", - "language": "rust", - "size_bytes": 5881, - "total_lines": 166, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.001943558Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 17, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_setup_custom_fonts", - "name": "setup_custom_fonts", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 87, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 86, - "column_start": 32, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 73, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 79, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 39, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 97, - "column_start": 61, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 96, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 81, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 160, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 124, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 34, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 137, - "column_start": 50, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 159, - "column_start": 26, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 0, - "column_end": 12, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashNotepad", - "name": "NyashNotepad", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_icon_extraction.rs", - "path": "./examples/test_icon_extraction.rs", - "language": "rust", - "size_bytes": 5572, - "total_lines": 137, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.006710437Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_as_bmp", - "name": "save_as_bmp", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 137, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust.d.ts", - "path": "./pkg/nyash_rust.d.ts", - "language": "typescript", - "size_bytes": 2180, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.231713904Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust.js", - "path": "./pkg/nyash_rust.js", - "language": "javascript", - "size_bytes": 18205, - "total_lines": 528, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.235347786Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 3, - "line_end": 3, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUint8ArrayMemory0", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStringFromWasm0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToExternrefTable0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleError", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLikeNone", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "passStringToWasm0", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDataViewMemory0", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "takeFromExternrefTable0", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "test_direct_canvas_draw", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__destroy_into_raw", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "free", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "version", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_get_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_init_memory", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_finalize_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initSync", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyashWasm", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust_bg.wasm.d.ts", - "path": "./pkg/nyash_rust_bg.wasm.d.ts", - "language": "typescript", - "size_bytes": 887, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.240313777Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-counter-plugin/src/lib.rs", - "language": "rust", - "size_bytes": 4857, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.247469938Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 73, - "column_end": 102, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_abi", - "name": "nyash_plugin_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 0, - "column_end": 49, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_init", - "name": "nyash_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 60, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_invoke", - "name": "nyash_plugin_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_result", - "name": "write_tlv_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 70, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_i32", - "name": "write_tlv_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_preflight", - "name": "preflight", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CounterInstance", - "name": "CounterInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 0, - "column_end": 37, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-file/src/lib.rs", - "language": "rust", - "size_bytes": 5232, - "total_lines": 196, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.273600230Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_nyash_plugin_init", - "name": "nyash_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_file_open", - "name": "nyash_file_open", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_file_read", - "name": "nyash_file_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 99, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_file_write", - "name": "nyash_file_write", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_file_exists", - "name": "nyash_file_exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_file_free", - "name": "nyash_file_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_string_free", - "name": "nyash_string_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 178, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_init", - "name": "test_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileBoxPlugin", - "name": "FileBoxPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxHandle", - "name": "FileBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ffi_types.rs", - "path": "./plugins/nyash-filebox-plugin/src/ffi_types.rs", - "language": "rust", - "size_bytes": 1246, - "total_lines": 43, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.283168970Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HostVtable", - "name": "HostVtable", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "filebox.rs", - "path": "./plugins/nyash-filebox-plugin/src/filebox.rs", - "language": "rust", - "size_bytes": 4677, - "total_lines": 173, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.286862511Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open", - "name": "open", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_path", - "name": "path", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 84, - "column_start": 36, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_content", - "name": "content", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_mut", - "name": "get_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_count", - "name": "count", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_filebox_basic_operations", - "name": "test_filebox_basic_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_filebox_registry", - "name": "test_filebox_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileBoxInstance", - "name": "FileBoxInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 15, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxRegistry", - "name": "FileBoxRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-filebox-plugin/src/lib.rs", - "language": "rust", - "size_bytes": 18511, - "total_lines": 435, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.291537098Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 73, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_abi", - "name": "nyash_plugin_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_init", - "name": "nyash_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_invoke", - "name": "nyash_plugin_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 297, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open_file", - "name": "open_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 310, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_result", - "name": "write_tlv_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 333, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 70, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_void", - "name": "write_tlv_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_bytes", - "name": "write_tlv_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_i32", - "name": "write_tlv_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_preflight", - "name": "preflight", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 356, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_header", - "name": "tlv_parse_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_two_strings", - "name": "tlv_parse_two_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 372, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_string_at", - "name": "tlv_parse_string_at", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 383, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 35, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 382, - "line_end": 382, - "column_start": 62, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_i32", - "name": "tlv_parse_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 394, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_bytes", - "name": "tlv_parse_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_handle", - "name": "tlv_parse_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 417, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log_info", - "name": "log_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 421, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_shutdown", - "name": "nyash_plugin_shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 431, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashMethodInfo", - "name": "NyashMethodInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxInstance", - "name": "FileBoxInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 50, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-math/src/lib.rs", - "language": "rust", - "size_bytes": 7050, - "total_lines": 328, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.319153552Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_nyash_math_create", - "name": "nyash_math_create", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_sqrt", - "name": "nyash_math_sqrt", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_pow", - "name": "nyash_math_pow", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_sin", - "name": "nyash_math_sin", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_cos", - "name": "nyash_math_cos", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_tan", - "name": "nyash_math_tan", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_abs", - "name": "nyash_math_abs", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_floor", - "name": "nyash_math_floor", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_ceil", - "name": "nyash_math_ceil", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_round", - "name": "nyash_math_round", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_log", - "name": "nyash_math_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_log10", - "name": "nyash_math_log10", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_exp", - "name": "nyash_math_exp", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_min", - "name": "nyash_math_min", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_max", - "name": "nyash_math_max", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_math_free", - "name": "nyash_math_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 112, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_random_create", - "name": "nyash_random_create", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_random_next", - "name": "nyash_random_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_random_range", - "name": "nyash_random_range", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_random_int", - "name": "nyash_random_int", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_random_free", - "name": "nyash_random_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_time_create", - "name": "nyash_time_create", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_time_now", - "name": "nyash_time_now", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_time_parse", - "name": "nyash_time_parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_time_free", - "name": "nyash_time_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 211, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_to_string", - "name": "nyash_datetime_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_year", - "name": "nyash_datetime_year", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_month", - "name": "nyash_datetime_month", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_day", - "name": "nyash_datetime_day", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 264, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_hour", - "name": "nyash_datetime_hour", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_minute", - "name": "nyash_datetime_minute", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 286, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_second", - "name": "nyash_datetime_second", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 297, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_timestamp", - "name": "nyash_datetime_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 308, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_datetime_free", - "name": "nyash_datetime_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 318, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_string_free", - "name": "nyash_string_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 328, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MathBox", - "name": "MathBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 9, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RandomBox", - "name": "RandomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimeBox", - "name": "TimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBox", - "name": "DateTimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-net-plugin/src/lib.rs", - "language": "rust", - "size_bytes": 51648, - "total_lines": 1051, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.331421858Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 38, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 42, - "column_end": 129, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 96, - "column_end": 128, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 44, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_net_log", - "name": "net_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 76, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 62, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 63, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 69, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 100, - "column_start": 71, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 101, - "column_start": 67, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_abi", - "name": "nyash_plugin_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 0, - "column_end": 49, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_init", - "name": "nyash_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 163, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_invoke", - "name": "nyash_plugin_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 187, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_server_invoke", - "name": "server_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 291, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 244, - "column_start": 48, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 26, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_request_invoke", - "name": "request_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 429, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 90, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 362, - "column_start": 50, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 391, - "column_start": 26, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 389, - "column_start": 36, - "column_end": 127, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_response_invoke", - "name": "response_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 516, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_client_invoke", - "name": "client_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 616, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 529, - "column_start": 55, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 544, - "column_start": 40, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 544, - "column_start": 69, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 40, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 69, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 569, - "column_start": 68, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 571, - "column_start": 71, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 573, - "column_start": 68, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 575, - "column_start": 70, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 579, - "column_start": 55, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 593, - "column_start": 40, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 593, - "line_end": 593, - "column_start": 69, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 601, - "column_start": 40, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 601, - "line_end": 601, - "column_start": 69, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_path", - "name": "parse_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 634, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_port", - "name": "parse_port", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 646, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_slice", - "name": "slice", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 649, - "column_start": 0, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_u32", - "name": "write_u32", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 660, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_result", - "name": "write_tlv_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 677, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 664, - "column_start": 61, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_void", - "name": "write_tlv_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 679, - "column_start": 0, - "column_end": 109, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_string", - "name": "write_tlv_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 680, - "column_start": 0, - "column_end": 129, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_bytes", - "name": "write_tlv_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 681, - "line_end": 681, - "column_start": 0, - "column_end": 118, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_i32", - "name": "write_tlv_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 682, - "column_start": 0, - "column_end": 129, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_handle", - "name": "write_tlv_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 683, - "line_end": 686, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_header", - "name": "tlv_parse_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 693, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_string", - "name": "tlv_parse_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 698, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 697, - "column_start": 53, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_two_strings", - "name": "tlv_parse_two_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 699, - "line_end": 706, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 702, - "column_start": 62, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 704, - "line_end": 704, - "column_start": 62, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_bytes", - "name": "tlv_parse_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 707, - "line_end": 711, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_i32", - "name": "tlv_parse_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 712, - "line_end": 722, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_handle", - "name": "tlv_parse_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 728, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_parse_entry_hdr", - "name": "tlv_parse_entry_hdr", - "symbol_type": "Function", - "file_path": "", - "line_start": 729, - "line_end": 734, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_host", - "name": "parse_host", - "symbol_type": "Function", - "file_path": "", - "line_start": 737, - "line_end": 745, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_http_request", - "name": "build_http_request", - "symbol_type": "Function", - "file_path": "", - "line_start": 747, - "line_end": 768, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 748, - "line_end": 748, - "column_start": 46, - "column_end": 72, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_http_request", - "name": "read_http_request", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 810, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_header_end", - "name": "find_header_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 812, - "line_end": 816, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_client_response_into", - "name": "parse_client_response_into", - "symbol_type": "Function", - "file_path": "", - "line_start": 818, - "line_end": 874, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 858, - "line_end": 858, - "column_start": 70, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 877, - "line_end": 877, - "column_start": 76, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 878, - "column_start": 72, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 879, - "line_end": 879, - "column_start": 76, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sock_server_invoke", - "name": "sock_server_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 881, - "line_end": 963, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 917, - "column_start": 48, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sock_client_invoke", - "name": "sock_client_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 999, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 975, - "line_end": 975, - "column_start": 68, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 977, - "line_end": 977, - "column_start": 71, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 979, - "column_start": 69, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 981, - "line_end": 981, - "column_start": 72, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sock_conn_invoke", - "name": "sock_conn_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 1001, - "line_end": 1051, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ServerState", - "name": "ServerState", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_RequestState", - "name": "RequestState", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ResponseState", - "name": "ResponseState", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ClientState", - "name": "ClientState", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 0, - "column_end": 19, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_SockServerState", - "name": "SockServerState", - "symbol_type": "Class", - "file_path": "", - "line_start": 140, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_SockConnState", - "name": "SockConnState", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_SockClientState", - "name": "SockClientState", - "symbol_type": "Class", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 0, - "column_end": 23, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./plugins/nyash-test-multibox/src/lib.rs", - "language": "rust", - "size_bytes": 10372, - "total_lines": 373, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.362122088Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_nyash_plugin_abi", - "name": "nyash_plugin_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_init", - "name": "nyash_plugin_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 149, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_get_box_count", - "name": "nyash_plugin_get_box_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_get_box_info", - "name": "nyash_plugin_get_box_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_get_type_id", - "name": "nyash_plugin_get_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 181, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_invoke", - "name": "nyash_plugin_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 222, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_instance_a", - "name": "create_instance_a", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_instance_b", - "name": "create_instance_b", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 272, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hello_method", - "name": "hello_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greet_method", - "name": "greet_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 309, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_destroy_instance", - "name": "destroy_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_tlv_string", - "name": "write_tlv_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 356, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log_info", - "name": "log_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 364, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_plugin_shutdown", - "name": "nyash_plugin_shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 373, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashHostVtable", - "name": "NyashHostVtable", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashMethodInfo", - "name": "NyashMethodInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TestInstance", - "name": "TestInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust.d.ts", - "path": "./projects/nyash-wasm/pkg/nyash_rust.d.ts", - "language": "typescript", - "size_bytes": 2180, - "total_lines": 58, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.397591683Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust.js", - "path": "./projects/nyash-wasm/pkg/nyash_rust.js", - "language": "javascript", - "size_bytes": 18205, - "total_lines": 528, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.400395108Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 3, - "line_end": 3, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getUint8ArrayMemory0", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getStringFromWasm0", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "addToExternrefTable0", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "handleError", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 34, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "isLikeNone", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "passStringToWasm0", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 94, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "getDataViewMemory0", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "takeFromExternrefTable0", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 109, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "test_direct_canvas_draw", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 116, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__destroy_into_raw", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 129, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "free", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 143, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 162, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "version", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 178, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 210, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_get_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 457, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_init_memory", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 461, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_finalize_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 472, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "initSync", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 497, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "", - "name": "__wbg_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 525, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "", - "name": "NyashWasm", - "symbol_type": "Class", - "file_path": "", - "line_start": 122, - "line_end": 179, - "column_start": 0, - "column_end": 0, - "language": "javascript", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_rust_bg.wasm.d.ts", - "path": "./projects/nyash-wasm/pkg/nyash_rust_bg.wasm.d.ts", - "language": "typescript", - "size_bytes": 887, - "total_lines": 16, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.405001649Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ast.rs", - "path": "./src/ast.rs", - "language": "rust", - "size_bytes": 34377, - "total_lines": 1012, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.418323009Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unknown", - "name": "unknown", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error_context", - "name": "error_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_location_string", - "name": "location_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_nyash_box", - "name": "to_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_nyash_box", - "name": "from_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_node_type", - "name": "node_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 648, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_classify", - "name": "classify", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 692, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_structure", - "name": "is_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 695, - "line_end": 697, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_expression", - "name": "is_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 702, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_statement", - "name": "is_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 707, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_info", - "name": "info", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 827, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_span", - "name": "span", - "symbol_type": "Function", - "file_path": "", - "line_start": 830, - "line_end": 865, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 871, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_param_count", - "name": "get_param_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 881, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_node_creation", - "name": "test_ast_node_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 892, - "line_end": 922, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operator", - "name": "test_binary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 925, - "line_end": 934, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_ast", - "name": "test_complex_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 937, - "line_end": 980, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_call", - "name": "test_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 983, - "line_end": 996, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operation", - "name": "test_binary_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 999, - "line_end": 1011, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Span", - "name": "Span", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNodeType", - "name": "ASTNodeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 92, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StructureNode", - "name": "StructureNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExpressionNode", - "name": "ExpressionNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 197, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StatementNode", - "name": "StatementNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CatchClause", - "name": "CatchClause", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LiteralValue", - "name": "LiteralValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 255, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_UnaryOperator", - "name": "UnaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 313, - "line_end": 316, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOperator", - "name": "BinaryOperator", - "symbol_type": "Class", - "file_path": "", - "line_start": 320, - "line_end": 334, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 369, - "line_end": 609, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler.rs", - "path": "./src/backend/aot/compiler.rs", - "language": "rust", - "size_bytes": 8656, - "total_lines": 223, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.425932742Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 21, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_mir_to_wasm", - "name": "compile_mir_to_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 56, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_precompile_wasm", - "name": "precompile_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 70, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 21, - "column_end": 106, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_mir_to_native", - "name": "compile_mir_to_native", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_precompiled", - "name": "execute_precompiled", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 25, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 99, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 104, - "column_start": 21, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 21, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 21, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 21, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_wasm", - "name": "validate_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 21, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset_stats", - "name": "reset_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compression_ratio", - "name": "compression_ratio", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_engine_info", - "name": "engine_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_compiler_creation", - "name": "test_compiler_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_empty_module_compilation", - "name": "test_empty_module_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_stats_tracking", - "name": "test_stats_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_validation", - "name": "test_wasm_validation", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_compression_ratio", - "name": "test_compression_ratio", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_engine_info", - "name": "test_engine_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AotCompiler", - "name": "AotCompiler", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "config.rs", - "path": "./src/backend/aot/config.rs", - "language": "rust", - "size_bytes": 7837, - "total_lines": 256, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.429888741Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_debug", - "name": "debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_for_target", - "name": "for_target", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_wasmtime_config", - "name": "wasmtime_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimization_level", - "name": "optimization_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_target_arch", - "name": "target_arch", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_simd_enabled", - "name": "simd_enabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compatibility_key", - "name": "compatibility_key", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_rebuild_wasmtime_config", - "name": "rebuild_wasmtime_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_optimization_level", - "name": "set_optimization_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_simd", - "name": "set_simd", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_default_config", - "name": "test_default_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_debug_config", - "name": "test_debug_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_compatibility_key", - "name": "test_compatibility_key", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_target_config", - "name": "test_target_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_optimization_level_setting", - "name": "test_optimization_level_setting", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_invalid_optimization_level", - "name": "test_invalid_optimization_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AotConfig", - "name": "AotConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "executable.rs", - "path": "./src/backend/aot/executable.rs", - "language": "rust", - "size_bytes": 9513, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.433624640Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_embed_precompiled_module", - "name": "embed_precompiled_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_executable", - "name": "create_executable", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 24, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_runtime_code", - "name": "generate_runtime_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_module_bytes", - "name": "format_module_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_cargo_toml", - "name": "generate_cargo_toml", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_rust_executable", - "name": "compile_rust_executable", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 21, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 21, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_executable_builder_creation", - "name": "test_executable_builder_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_embed_module", - "name": "test_embed_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_format_module_bytes", - "name": "test_format_module_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_cargo_toml_generation", - "name": "test_cargo_toml_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_runtime_code_generation", - "name": "test_runtime_code_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ExecutableBuilder", - "name": "ExecutableBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/backend/aot/mod.rs", - "language": "rust", - "size_bytes": 4111, - "total_lines": 152, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.437247027Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from", - "name": "from", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from", - "name": "from", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_config", - "name": "with_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_to_executable", - "name": "compile_to_executable", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_to_precompiled", - "name": "compile_to_precompiled", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_aot_backend_creation", - "name": "test_aot_backend_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_default_config", - "name": "test_default_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AotError", - "name": "AotError", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AotBackend", - "name": "AotBackend", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AotStats", - "name": "AotStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compiler.rs", - "path": "./src/backend/llvm/compiler.rs", - "language": "rust", - "size_bytes": 9479, - "total_lines": 246, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.442034842Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_module", - "name": "compile_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_and_execute", - "name": "compile_and_execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_interpret_function", - "name": "interpret_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 40, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 40, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 44, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_compiler_creation", - "name": "test_compiler_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LLVMCompiler", - "name": "LLVMCompiler", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "context.rs", - "path": "./src/backend/llvm/context.rs", - "language": "rust", - "size_bytes": 2456, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.445425676Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CodegenContext", - "name": "CodegenContext", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/backend/llvm/mod.rs", - "language": "rust", - "size_bytes": 1139, - "total_lines": 42, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.448431869Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_compile_and_execute", - "name": "compile_and_execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_to_object", - "name": "compile_to_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_llvm_module_creation", - "name": "test_llvm_module_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/backend/mod.rs", - "language": "rust", - "size_bytes": 590, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.452135304Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vm.rs", - "path": "./src/backend/vm.rs", - "language": "rust", - "size_bytes": 59481, - "total_lines": 1382, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.458160239Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eq", - "name": "eq", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_nyash_box", - "name": "to_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_integer", - "name": "as_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_bool", - "name": "as_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_nyash_box", - "name": "from_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from", - "name": "from", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_runtime", - "name": "with_runtime", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_module", - "name": "execute_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 24, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_function_by_name", - "name": "call_function_by_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 357, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 314, - "column_start": 57, - "column_end": 119, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 316, - "column_start": 24, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_function", - "name": "execute_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 419, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 374, - "column_start": 28, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_instruction", - "name": "execute_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 598, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_value", - "name": "get_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 613, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_value", - "name": "set_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 616, - "line_end": 623, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binary_op", - "name": "execute_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 686, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unary_op", - "name": "execute_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 689, - "line_end": 695, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_compare_op", - "name": "execute_compare_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 793, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_record_instruction", - "name": "record_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 796, - "line_end": 838, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_debug_log_boxcall", - "name": "debug_log_boxcall", - "symbol_type": "Function", - "file_path": "", - "line_start": 840, - "line_end": 867, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 851, - "line_end": 851, - "column_start": 57, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_maybe_print_stats", - "name": "maybe_print_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 909, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 871, - "line_end": 871, - "column_start": 63, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 874, - "line_end": 874, - "column_start": 45, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 875, - "line_end": 875, - "column_start": 74, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 876, - "column_start": 22, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 876, - "line_end": 876, - "column_start": 52, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 877, - "line_end": 877, - "column_start": 44, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 879, - "line_end": 879, - "column_start": 73, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 880, - "column_start": 58, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 884, - "line_end": 884, - "column_start": 100, - "column_end": 116, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 885, - "line_end": 887, - "column_start": 58, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 890, - "line_end": 890, - "column_start": 65, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_unified_method", - "name": "call_unified_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 912, - "line_end": 916, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_box_method", - "name": "call_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 919, - "line_end": 1192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 1203, - "line_end": 1205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_vm_execution", - "name": "test_basic_vm_execution", - "symbol_type": "Function", - "file_path": "", - "line_start": 1221, - "line_end": 1235, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_operations", - "name": "test_binary_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 1238, - "line_end": 1258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_box_declarations", - "name": "collect_box_declarations", - "symbol_type": "Function", - "file_path": "", - "line_start": 1260, - "line_end": 1289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_walk", - "name": "walk", - "symbol_type": "Function", - "file_path": "", - "line_start": 1261, - "line_end": 1287, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_vm_user_box_birth_and_method", - "name": "test_vm_user_box_birth_and_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1292, - "line_end": 1335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_vm_user_box_var_then_method", - "name": "test_vm_user_box_var_then_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 1338, - "line_end": 1367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_vm_extern_console_log", - "name": "test_vm_extern_console_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 1370, - "line_end": 1381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_VMError", - "name": "VMError", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_VMValue", - "name": "VMValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_VM", - "name": "VM", - "symbol_type": "Class", - "file_path": "", - "line_start": 174, - "line_end": 217, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ControlFlow", - "name": "ControlFlow", - "symbol_type": "Class", - "file_path": "", - "line_start": 1196, - "line_end": 1200, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vm_instructions.rs", - "path": "./src/backend/vm_instructions.rs", - "language": "rust", - "size_bytes": 20982, - "total_lines": 488, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.465490698Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_const", - "name": "execute_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 18, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binop", - "name": "execute_binop", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unaryop", - "name": "execute_unaryop", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_compare", - "name": "execute_compare", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_print", - "name": "execute_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_jump", - "name": "execute_jump", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_branch", - "name": "execute_branch", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_return", - "name": "execute_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_typeop", - "name": "execute_typeop", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_phi", - "name": "execute_phi", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_load", - "name": "execute_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_store", - "name": "execute_store", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_copy", - "name": "execute_copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_call", - "name": "execute_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 17, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_newbox", - "name": "execute_newbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 209, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 25, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 25, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_array_get", - "name": "execute_array_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_array_set", - "name": "execute_array_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_ref_new", - "name": "execute_ref_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_ref_get", - "name": "execute_ref_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 69, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_ref_set", - "name": "execute_ref_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 318, - "column_start": 69, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_weak_new", - "name": "execute_weak_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 346, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_weak_load", - "name": "execute_weak_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_barrier_read", - "name": "execute_barrier_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_barrier_write", - "name": "execute_barrier_write", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_throw", - "name": "execute_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_catch", - "name": "execute_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_await", - "name": "execute_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_extern_call", - "name": "execute_extern_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 415, - "line_end": 415, - "column_start": 43, - "column_end": 112, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_boxcall", - "name": "execute_boxcall", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 446, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vm_phi.rs", - "path": "./src/backend/vm_phi.rs", - "language": "rust", - "size_bytes": 7129, - "total_lines": 214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.469967493Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_record_block_transition", - "name": "record_block_transition", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_record_entry", - "name": "record_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_phi", - "name": "execute_phi", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_select_phi_input", - "name": "select_phi_input", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_loop_header", - "name": "is_loop_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_record_transition", - "name": "record_transition", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_initialize", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_phi", - "name": "execute_phi", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_debug_info", - "name": "debug_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_phi_selection", - "name": "test_phi_selection", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 194, - "column_start": 12, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 210, - "column_start": 12, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PhiHandler", - "name": "PhiHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LoopExecutor", - "name": "LoopExecutor", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "codegen.rs", - "path": "./src/backend/wasm/codegen.rs", - "language": "rust", - "size_bytes": 29170, - "total_lines": 716, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.475544282Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_wat", - "name": "to_wat", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_module", - "name": "generate_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_function", - "name": "generate_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_count_locals", - "name": "count_locals", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_basic_block", - "name": "generate_basic_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 208, - "column_start": 24, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_instruction", - "name": "generate_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_const", - "name": "generate_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_binop", - "name": "generate_binop", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_compare", - "name": "generate_compare", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_return", - "name": "generate_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_string_box_const", - "name": "generate_string_box_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 524, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_print", - "name": "generate_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 532, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_string_literal", - "name": "register_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 535, - "line_end": 546, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_data_segments", - "name": "generate_data_segments", - "symbol_type": "Function", - "file_path": "", - "line_start": 549, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 557, - "column_start": 21, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_local_index", - "name": "get_local_index", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 577, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 576, - "column_start": 24, - "column_end": 115, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_box_call", - "name": "generate_box_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 592, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_to_string_call", - "name": "generate_to_string_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 606, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_print_call", - "name": "generate_print_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 609, - "line_end": 625, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_equals_call", - "name": "generate_equals_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 646, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_clone_call", - "name": "generate_clone_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 660, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_log_call", - "name": "generate_log_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 688, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_module_wat_generation", - "name": "test_wasm_module_wat_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 706, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_constant_generation", - "name": "test_constant_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 715, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WasmModule", - "name": "WasmModule", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WasmCodegen", - "name": "WasmCodegen", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "host.rs", - "path": "./src/backend/wasm/host.rs", - "language": "rust", - "size_bytes": 8679, - "total_lines": 201, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.480829660Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_host_functions", - "name": "create_host_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 69, - "column_start": 45, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 64, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 86, - "column_start": 49, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 64, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 103, - "column_start": 51, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 64, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 51, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 51, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 48, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 183, - "column_start": 44, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 64, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 190, - "column_start": 45, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 197, - "column_start": 44, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_HostState", - "name": "HostState", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 15, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory.rs", - "path": "./src/backend/wasm/memory.rs", - "language": "rust", - "size_bytes": 12017, - "total_lines": 406, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.484733165Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 38, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_field", - "name": "add_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_offset", - "name": "get_field_offset", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_standard_box_types", - "name": "register_standard_box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box_type", - "name": "register_box_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_layout", - "name": "get_box_layout", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_globals", - "name": "get_globals", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_malloc_function", - "name": "get_malloc_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_alloc_function", - "name": "get_box_alloc_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 144, - "column_start": 24, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_get_function", - "name": "get_field_get_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 24, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 190, - "column_start": 24, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_set_function", - "name": "get_field_set_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 220, - "column_start": 24, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 24, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_memory_layout_info", - "name": "get_memory_layout_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type_id", - "name": "get_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 274, - "column_start": 44, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_generic_box_alloc_function", - "name": "get_generic_box_alloc_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_layout_creation", - "name": "test_box_layout_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_layout_field_addition", - "name": "test_box_layout_field_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_memory_manager_standard_types", - "name": "test_memory_manager_standard_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_memory_manager_registration", - "name": "test_memory_manager_registration", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_malloc_function_generation", - "name": "test_malloc_function_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_alloc_function_generation", - "name": "test_box_alloc_function_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_generic_box_alloc_function", - "name": "test_generic_box_alloc_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxLayout", - "name": "BoxLayout", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryManager", - "name": "MemoryManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/backend/wasm/mod.rs", - "language": "rust", - "size_bytes": 6582, - "total_lines": 183, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.488551229Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_module", - "name": "compile_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_wat_to_wasm", - "name": "wat_to_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile_to_wat", - "name": "compile_to_wat", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_wasm", - "name": "execute_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 108, - "column_start": 21, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 58, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 139, - "column_start": 62, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 26, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 121, - "column_start": 28, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 21, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 21, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 21, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_backend_creation", - "name": "test_backend_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_empty_module_compilation", - "name": "test_empty_module_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WasmError", - "name": "WasmError", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WasmBackend", - "name": "WasmBackend", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "runtime.rs", - "path": "./src/backend/wasm/runtime.rs", - "language": "rust", - "size_bytes": 13604, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.492601657Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_standard_imports", - "name": "add_standard_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_imports", - "name": "get_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 153, - "column_start": 32, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_import", - "name": "add_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_import", - "name": "has_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 32, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_import", - "name": "get_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 33, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_js_import_object", - "name": "get_js_import_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_wasmtime_imports", - "name": "get_wasmtime_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_runtime_imports_creation", - "name": "test_runtime_imports_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_import_wat_generation", - "name": "test_import_wat_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_custom_import_addition", - "name": "test_custom_import_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 321, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_js_import_object_generation", - "name": "test_js_import_object_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasmtime_imports_generation", - "name": "test_wasmtime_imports_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RuntimeImports", - "name": "RuntimeImports", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImportFunction", - "name": "ImportFunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "benchmarks.rs", - "path": "./src/benchmarks.rs", - "language": "rust", - "size_bytes": 8851, - "total_lines": 240, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.497464620Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_all", - "name": "run_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_interpreter_benchmark", - "name": "run_interpreter_benchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_vm_benchmark", - "name": "run_vm_benchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_wasm_benchmark", - "name": "run_wasm_benchmark", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_results", - "name": "print_results", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 54, - "column_end": 119, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 20, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 17, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 50, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 210, - "column_start": 20, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 17, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 212, - "column_start": 50, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 215, - "column_start": 20, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 17, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 50, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_benchmark_light", - "name": "test_benchmark_light", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BenchmarkResult", - "name": "BenchmarkResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BenchmarkSuite", - "name": "BenchmarkSuite", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bridge.rs", - "path": "./src/bid/bridge.rs", - "language": "rust", - "size_bytes": 8866, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.502348330Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box", - "name": "register_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box", - "name": "get_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unregister", - "name": "unregister", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_to_bid_handle", - "name": "box_to_bid_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bid_handle_to_box", - "name": "bid_handle_to_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_string_value", - "name": "extract_string_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_integer_value", - "name": "extract_integer_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_registry", - "name": "test_box_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_box_bid_conversion", - "name": "test_string_box_bid_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_integer_box_bid_conversion", - "name": "test_integer_box_bid_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_future_box_bid_conversion", - "name": "test_future_box_bid_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidBridge", - "name": "BidBridge", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxRegistry", - "name": "BoxRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error.rs", - "path": "./src/bid/error.rs", - "language": "rust", - "size_bytes": 2373, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.507278875Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_raw", - "name": "from_raw", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_message", - "name": "message", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidError", - "name": "BidError", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "generic_plugin_box.rs", - "path": "./src/bid/generic_plugin_box.rs", - "language": "rust", - "size_bytes": 4442, - "total_lines": 138, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.510656031Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_birth", - "name": "birth", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_method", - "name": "call_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 87, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 92, - "column_start": 4, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_GenericPluginBox", - "name": "GenericPluginBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "loader.rs", - "path": "./src/bid/loader.rs", - "language": "rust", - "size_bytes": 4942, - "total_lines": 133, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.514183998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_load_from_file", - "name": "load_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 25, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type_name", - "name": "get_type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_methods", - "name": "get_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_method", - "name": "find_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 115, - "column_start": 92, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_alloc", - "name": "host_alloc", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_free", - "name": "host_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_wake", - "name": "host_wake", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 4, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_log", - "name": "host_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_host_vtable", - "name": "default_host_vtable", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_plugin_path", - "name": "resolve_plugin_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LoadedPlugin", - "name": "LoadedPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "metadata.rs", - "path": "./src/bid/metadata.rs", - "language": "rust", - "size_bytes": 6733, - "total_lines": 230, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.517874747Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_a", - "name": "a", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 8, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_f", - "name": "f", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 8, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_w", - "name": "w", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 8, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_l", - "name": "l", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 8, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_methods_slice", - "name": "methods_slice", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_metadata_creation", - "name": "test_plugin_metadata_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_host_vtable", - "name": "test_host_vtable", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_a", - "name": "a", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 8, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_f", - "name": "f", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 8, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_w", - "name": "w", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 226, - "column_start": 8, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_l", - "name": "l", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 8, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashHostVtable", - "name": "NyashHostVtable", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashMethodInfo", - "name": "NyashMethodInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginState", - "name": "PluginState", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginMetadata", - "name": "PluginMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 143, - "line_end": 152, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid/mod.rs", - "language": "rust", - "size_bytes": 1130, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.521229124Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid/plugins/filebox/mod.rs", - "language": "rust", - "size_bytes": 6242, - "total_lines": 195, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.526678936Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open", - "name": "open", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 24, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 24, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close", - "name": "close", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 91, - "column_start": 24, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 14, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_registry", - "name": "get_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open", - "name": "open", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 21, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 21, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 143, - "column_start": 21, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close", - "name": "close", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 21, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_filebox_plugin", - "name": "test_filebox_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileBoxRegistry", - "name": "FileBoxRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxState", - "name": "FileBoxState", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_FileMode", - "name": "FileMode", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxPlugin", - "name": "FileBoxPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid/plugins/mod.rs", - "language": "rust", - "size_bytes": 160, - "total_lines": 8, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.530371066Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_api.rs", - "path": "./src/bid/plugin_api.rs", - "language": "rust", - "size_bytes": 6683, - "total_lines": 253, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.534053343Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_check_abi", - "name": "check_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_initialize", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shutdown", - "name": "shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_alloc", - "name": "with_alloc", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_free", - "name": "with_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_log", - "name": "with_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mock_abi", - "name": "mock_abi", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mock_init", - "name": "mock_init", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mock_invoke", - "name": "mock_invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mock_shutdown", - "name": "mock_shutdown", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 4, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_handle", - "name": "test_plugin_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginHandle", - "name": "PluginHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HostVtableBuilder", - "name": "HostVtableBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_box_legacy.rs", - "path": "./src/bid/plugin_box_legacy.rs", - "language": "rust", - "size_bytes": 7757, - "total_lines": 200, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.537900088Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_birth", - "name": "birth", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open", - "name": "open", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close", - "name": "close", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_birth", - "name": "birth", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_bytes", - "name": "read_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 4, - "column_end": 89, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_bytes", - "name": "write_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 4, - "column_end": 87, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close", - "name": "close", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 120, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_method", - "name": "call_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_available_methods", - "name": "get_available_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 171, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 176, - "column_start": 4, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginBoxInstance", - "name": "PluginBoxInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 11, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginFileBox", - "name": "PluginFileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "registry.rs", - "path": "./src/bid/registry.rs", - "language": "rust", - "size_bytes": 5076, - "total_lines": 124, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.541550745Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_by_name", - "name": "get_by_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_by_type_id", - "name": "get_by_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 47, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method_type_info", - "name": "get_method_type_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_from_config", - "name": "load_from_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 46, - "column_start": 60, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init_global_from_config", - "name": "init_global_from_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_global", - "name": "global", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginRegistry", - "name": "PluginRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tlv.rs", - "path": "./src/bid/tlv.rs", - "language": "rust", - "size_bytes": 10024, - "total_lines": 324, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.548351873Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_bool", - "name": "encode_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_i32", - "name": "encode_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_i64", - "name": "encode_i64", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_f32", - "name": "encode_f32", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_f64", - "name": "encode_f64", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_string", - "name": "encode_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_bytes", - "name": "encode_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_handle", - "name": "encode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_void", - "name": "encode_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_entry", - "name": "encode_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finish", - "name": "finish", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_arg_count", - "name": "arg_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_next", - "name": "decode_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_bool", - "name": "decode_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_i32", - "name": "decode_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_i64", - "name": "decode_i64", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_handle", - "name": "decode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_f32", - "name": "decode_f32", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_f64", - "name": "decode_f64", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_string", - "name": "decode_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 45, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_encode_decode_primitives", - "name": "test_encode_decode_primitives", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 309, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_encode_decode_handle", - "name": "test_encode_decode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidTlvHeader", - "name": "BidTlvHeader", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvEntry", - "name": "TlvEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvEncoder", - "name": "TlvEncoder", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvDecoder", - "name": "TlvDecoder", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "types.rs", - "path": "./src/bid/types.rs", - "language": "rust", - "size_bytes": 7729, - "total_lines": 240, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.553984234Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_u64", - "name": "to_u64", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_u64", - "name": "from_u64", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tag", - "name": "tag", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_payload_size", - "name": "payload_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_name", - "name": "with_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_determine_bid_tag", - "name": "determine_bid_tag", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_handle_packing", - "name": "test_handle_packing", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_type_tags", - "name": "test_type_tags", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_arg_type_mapping", - "name": "test_arg_type_mapping", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidType", - "name": "BidType", - "symbol_type": "Class", - "file_path": "", - "line_start": 3, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidHandle", - "name": "BidHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidTag", - "name": "BidTag", - "symbol_type": "Class", - "file_path": "", - "line_start": 64, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxTypeId", - "name": "BoxTypeId", - "symbol_type": "Class", - "file_path": "", - "line_start": 117, - "line_end": 127, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodTypeInfo", - "name": "MethodTypeInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ArgTypeMapping", - "name": "ArgTypeMapping", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "generator.rs", - "path": "./src/bid-codegen-from-copilot/codegen/generator.rs", - "language": "rust", - "size_bytes": 7707, - "total_lines": 239, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.560290518Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_force", - "name": "with_force", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_dry_run", - "name": "with_dry_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_wasm", - "name": "generate_wasm", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_vm", - "name": "generate_vm", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_llvm", - "name": "generate_llvm", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_typescript", - "name": "generate_typescript", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_python", - "name": "generate_python", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_files", - "name": "write_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 29, - "column_end": 22, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 181, - "column_start": 25, - "column_end": 18, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_preview_files", - "name": "preview_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_code_gen_target_from_str", - "name": "test_code_gen_target_from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_code_gen_target_as_str", - "name": "test_code_gen_target_as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CodeGenTarget", - "name": "CodeGenTarget", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CodeGenOptions", - "name": "CodeGenOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_GeneratedFile", - "name": "GeneratedFile", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CodeGenResult", - "name": "CodeGenResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CodeGenerator", - "name": "CodeGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 96, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid-codegen-from-copilot/codegen/mod.rs", - "language": "rust", - "size_bytes": 150, - "total_lines": 9, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.563727671Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "llvm.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/llvm.rs", - "language": "rust", - "size_bytes": 515, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.567631998Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LlvmGenerator", - "name": "LlvmGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 8, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/mod.rs", - "language": "rust", - "size_bytes": 119, - "total_lines": 9, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.570619415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/python.rs", - "language": "rust", - "size_bytes": 522, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.573597770Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PythonGenerator", - "name": "PythonGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 8, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "typescript.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/typescript.rs", - "language": "rust", - "size_bytes": 550, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.576742361Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TypeScriptGenerator", - "name": "TypeScriptGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 8, - "column_start": 0, - "column_end": 31, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vm.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/vm.rs", - "language": "rust", - "size_bytes": 13653, - "total_lines": 296, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.580515645Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_rust_function_table", - "name": "generate_rust_function_table", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_vm_function_impl", - "name": "generate_vm_function_impl", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 61, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_dispatcher", - "name": "generate_dispatcher", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_readme", - "name": "generate_readme", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 262, - "column_start": 71, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pascal_case", - "name": "pascal_case", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 281, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_pascal_case", - "name": "test_pascal_case", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_VmGenerator", - "name": "VmGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 23, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm.rs", - "path": "./src/bid-codegen-from-copilot/codegen/targets/wasm.rs", - "language": "rust", - "size_bytes": 14573, - "total_lines": 357, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.585329170Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_wat_imports", - "name": "generate_wat_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_wasm_import", - "name": "generate_wasm_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bid_type_to_wasm_type", - "name": "bid_type_to_wasm_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_js_host_template", - "name": "generate_js_host_template", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_js_method", - "name": "generate_js_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 64, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 61, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_readme", - "name": "generate_readme", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 305, - "column_start": 71, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bid_type_to_wasm_type", - "name": "test_bid_type_to_wasm_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_generate_wasm_import", - "name": "test_generate_wasm_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WasmGenerator", - "name": "WasmGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "schema.rs", - "path": "./src/bid-codegen-from-copilot/schema.rs", - "language": "rust", - "size_bytes": 8314, - "total_lines": 287, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.590949782Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_load_from_file", - "name": "load_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 21, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 21, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_interface", - "name": "get_interface", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 36, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_name", - "name": "name", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate", - "name": "validate", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 61, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_name", - "name": "get_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type", - "name": "get_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 180, - "column_start": 58, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 58, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_void", - "name": "is_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_console_bid", - "name": "test_parse_console_bid", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bid_definition_name", - "name": "test_bid_definition_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_duplicate_interface_validation", - "name": "test_duplicate_interface_validation", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 286, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidDefinition", - "name": "BidDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidMetadata", - "name": "BidMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidInterface", - "name": "BidInterface", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidMethod", - "name": "BidMethod", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidParameter", - "name": "BidParameter", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidTypeRef", - "name": "BidTypeRef", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error.rs", - "path": "./src/bid-converter-copilot/error.rs", - "language": "rust", - "size_bytes": 2373, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.595872572Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_raw", - "name": "from_raw", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_message", - "name": "message", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidError", - "name": "BidError", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/bid-converter-copilot/mod.rs", - "language": "rust", - "size_bytes": 301, - "total_lines": 13, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.598961383Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tlv.rs", - "path": "./src/bid-converter-copilot/tlv.rs", - "language": "rust", - "size_bytes": 10024, - "total_lines": 324, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.602985069Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_bool", - "name": "encode_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_i32", - "name": "encode_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_i64", - "name": "encode_i64", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_f32", - "name": "encode_f32", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_f64", - "name": "encode_f64", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_string", - "name": "encode_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_bytes", - "name": "encode_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_handle", - "name": "encode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_void", - "name": "encode_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_encode_entry", - "name": "encode_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finish", - "name": "finish", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_arg_count", - "name": "arg_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_next", - "name": "decode_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_bool", - "name": "decode_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_i32", - "name": "decode_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_i64", - "name": "decode_i64", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_handle", - "name": "decode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_f32", - "name": "decode_f32", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_f64", - "name": "decode_f64", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_decode_string", - "name": "decode_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 269, - "column_start": 45, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_encode_decode_primitives", - "name": "test_encode_decode_primitives", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 309, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_encode_decode_handle", - "name": "test_encode_decode_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidTlvHeader", - "name": "BidTlvHeader", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvEntry", - "name": "TlvEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvEncoder", - "name": "TlvEncoder", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TlvDecoder", - "name": "TlvDecoder", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 133, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "types.rs", - "path": "./src/bid-converter-copilot/types.rs", - "language": "rust", - "size_bytes": 7748, - "total_lines": 242, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.607121329Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_u64", - "name": "to_u64", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_u64", - "name": "from_u64", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tag", - "name": "tag", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_payload_size", - "name": "payload_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_name", - "name": "with_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_determine_bid_tag", - "name": "determine_bid_tag", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_handle_packing", - "name": "test_handle_packing", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_type_tags", - "name": "test_type_tags", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_arg_type_mapping", - "name": "test_arg_type_mapping", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BidType", - "name": "BidType", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidHandle", - "name": "BidHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BidTag", - "name": "BidTag", - "symbol_type": "Class", - "file_path": "", - "line_start": 66, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxTypeId", - "name": "BoxTypeId", - "symbol_type": "Class", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodTypeInfo", - "name": "MethodTypeInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ArgTypeMapping", - "name": "ArgTypeMapping", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 153, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_plugin_loader_v2.rs", - "path": "./src/bin/test_plugin_loader_v2.rs", - "language": "rust", - "size_bytes": 1676, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.612933877Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/array/mod.rs", - "language": "rust", - "size_bytes": 12684, - "total_lines": 364, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.618915769Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_elements", - "name": "new_with_elements", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_push", - "name": "push", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pop", - "name": "pop", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_len", - "name": "len", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_indexOf", - "name": "indexOf", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 21, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sort", - "name": "sort", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 192, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reverse", - "name": "reverse", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_slice", - "name": "slice", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 243, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 269, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 262, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 284, - "column_start": 17, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_identity", - "name": "is_identity", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 4, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 322, - "column_start": 17, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ArrayBox", - "name": "ArrayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "audio_box.rs", - "path": "./src/boxes/audio_box.rs", - "language": "rust", - "size_bytes": 10069, - "total_lines": 312, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.623565217Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_volume", - "name": "set_volume", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_volume", - "name": "get_volume", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_tone", - "name": "create_tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_beep", - "name": "create_beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_noise", - "name": "create_noise", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_frequency_data", - "name": "get_frequency_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_waveform_data", - "name": "get_waveform_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_playing", - "name": "is_playing", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_tone", - "name": "create_tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_beep", - "name": "create_beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_noise", - "name": "create_noise", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_frequency_data", - "name": "get_frequency_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 20, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_waveform_data", - "name": "get_waveform_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 229, - "column_start": 21, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_context_running", - "name": "is_context_running", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resume_context", - "name": "resume_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resume_context", - "name": "resume_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AudioBox", - "name": "AudioBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "bool_box.rs", - "path": "./src/boxes/bool_box.rs", - "language": "rust", - "size_bytes": 3013, - "total_lines": 123, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.627653830Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/buffer/mod.rs", - "language": "rust", - "size_bytes": 9318, - "total_lines": 271, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.632291803Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_len", - "name": "len", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_vec", - "name": "from_vec", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_readAll", - "name": "readAll", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_append", - "name": "append", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_slice", - "name": "slice", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_shared_with", - "name": "is_shared_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_reference", - "name": "share_reference", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_memory_footprint", - "name": "memory_footprint", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 259, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BufferBox", - "name": "BufferBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas_event_box.rs", - "path": "./src/boxes/canvas_event_box.rs", - "language": "rust", - "size_bytes": 9917, - "total_lines": 304, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.636982796Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_canvas_element", - "name": "get_canvas_element", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_mouse_x", - "name": "get_mouse_x", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_mouse_y", - "name": "get_mouse_y", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_pressed", - "name": "is_pressed", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_canvas_coordinates", - "name": "get_canvas_coordinates", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_down", - "name": "on_mouse_down", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 141, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_up", - "name": "on_mouse_up", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_move", - "name": "on_mouse_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_click", - "name": "on_mouse_click", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_touch_start", - "name": "on_touch_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_key_down", - "name": "on_key_down", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 49, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_down", - "name": "on_mouse_down", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_up", - "name": "on_mouse_up", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_move", - "name": "on_mouse_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_mouse_click", - "name": "on_mouse_click", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_touch_start", - "name": "on_touch_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_key_down", - "name": "on_key_down", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 303, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CanvasEventBox", - "name": "CanvasEventBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 84, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "canvas_loop_box.rs", - "path": "./src/boxes/canvas_loop_box.rs", - "language": "rust", - "size_bytes": 8899, - "total_lines": 314, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.640993839Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 112, - "column_start": 45, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pause", - "name": "pause", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resume", - "name": "resume", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 45, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resume", - "name": "resume", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_frame", - "name": "update_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_fps", - "name": "get_fps", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_frame_count", - "name": "get_frame_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_delta_time", - "name": "get_delta_time", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_elapsed_time", - "name": "get_elapsed_time", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_target_fps", - "name": "set_target_fps", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_running", - "name": "is_running", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_paused", - "name": "is_paused", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 286, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CanvasLoopBox", - "name": "CanvasLoopBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "console_box.rs", - "path": "./src/boxes/console_box.rs", - "language": "rust", - "size_bytes": 5631, - "total_lines": 227, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.644820110Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_warn", - "name": "warn", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_warn", - "name": "warn", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ConsoleBox", - "name": "ConsoleBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConsoleBox", - "name": "ConsoleBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 137, - "line_end": 139, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_box.rs", - "path": "./src/boxes/debug_box.rs", - "language": "rust", - "size_bytes": 12820, - "total_lines": 391, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.648770883Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_tracking", - "name": "start_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_tracking", - "name": "stop_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_fields", - "name": "get_box_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all", - "name": "dump_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_file", - "name": "save_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 218, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_watch", - "name": "watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_memory_report", - "name": "memory_report", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_breakpoint", - "name": "set_breakpoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trace_call", - "name": "trace_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_call_stack", - "name": "show_call_stack", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_tracking", - "name": "is_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_tracked_count", - "name": "get_tracked_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 335, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 388, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DebugBox", - "name": "DebugBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 111, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TrackedBoxInfo", - "name": "TrackedBoxInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_CallInfo", - "name": "CallInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 128, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "egui_box.rs", - "path": "./src/boxes/egui_box.rs", - "language": "rust", - "size_bytes": 7212, - "total_lines": 238, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.652792789Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_app_state", - "name": "set_app_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_update_fn", - "name": "set_update_fn", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update", - "name": "update", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_gui", - "name": "run_gui", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 25, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_egui_box_creation", - "name": "test_egui_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_egui_box_to_string", - "name": "test_egui_box_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_EguiBox", - "name": "EguiBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashApp", - "name": "NyashApp", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "extern_box.rs", - "path": "./src/boxes/extern_box.rs", - "language": "rust", - "size_bytes": 4693, - "total_lines": 148, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.656371028Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_console", - "name": "new_console", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_canvas", - "name": "new_canvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_method", - "name": "call_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_methods", - "name": "list_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_fields", - "name": "list_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ExternBox", - "name": "ExternBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/file/mod.rs", - "language": "rust", - "size_bytes": 5287, - "total_lines": 172, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.660943411Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 54, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_open", - "name": "open", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_to_string", - "name": "read_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_all", - "name": "write_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/future/mod.rs", - "language": "rust", - "size_bytes": 4377, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.665788714Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_result", - "name": "set_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ready", - "name": "ready", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_wait_and_get", - "name": "wait_and_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashFutureBox", - "name": "NyashFutureBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/http/mod.rs", - "language": "rust", - "size_bytes": 3053, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.670439985Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 21, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_http_get", - "name": "http_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_post", - "name": "post", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_put", - "name": "put", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_request", - "name": "request", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_HttpClientBox", - "name": "HttpClientBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http_message_box.rs", - "path": "./src/boxes/http_message_box.rs", - "language": "rust", - "size_bytes": 14134, - "total_lines": 432, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.674627095Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method", - "name": "get_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_path", - "name": "get_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_query_string", - "name": "get_query_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_header", - "name": "get_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_all_headers", - "name": "get_all_headers", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_header", - "name": "has_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_body", - "name": "get_body", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_content_type", - "name": "get_content_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_content_length", - "name": "get_content_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_status", - "name": "set_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_header", - "name": "set_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_content_type", - "name": "set_content_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_body", - "name": "set_body", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 309, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_append_body", - "name": "append_body", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_http_string", - "name": "to_http_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_html_response", - "name": "create_html_response", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_json_response", - "name": "create_json_response", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_404_response", - "name": "create_404_response", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 402, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 412, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 417, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 425, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 431, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_HTTPRequestBox", - "name": "HTTPRequestBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HTTPResponseBox", - "name": "HTTPResponseBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 260, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http_server_box.rs", - "path": "./src/boxes/http_server_box.rs", - "language": "rust", - "size_bytes": 16451, - "total_lines": 439, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.679173094Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 51, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 17, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 86, - "column_start": 17, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bind", - "name": "bind", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_listen", - "name": "listen", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start", - "name": "start", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 207, - "column_start": 33, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 217, - "column_start": 30, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop", - "name": "stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_route", - "name": "route", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_post", - "name": "post", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_put", - "name": "put", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_static_path", - "name": "set_static_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_timeout", - "name": "set_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_client_request_with_routes", - "name": "handle_client_request_with_routes", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_active_connections", - "name": "get_active_connections", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_running", - "name": "is_running", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 389, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 397, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 405, - "line_end": 407, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 424, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 438, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_HTTPServerBox", - "name": "HTTPServerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integer_box.rs", - "path": "./src/boxes/integer_box.rs", - "language": "rust", - "size_bytes": 3012, - "total_lines": 119, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.683146784Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "intent_box.rs", - "path": "./src/boxes/intent_box.rs", - "language": "rust", - "size_bytes": 4384, - "total_lines": 154, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.686417900Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_name", - "name": "get_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_payload", - "name": "get_payload", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_payload", - "name": "set_payload", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_IntentBox", - "name": "IntentBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/json/mod.rs", - "language": "rust", - "size_bytes": 9064, - "total_lines": 278, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.691393047Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stringify", - "name": "stringify", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_keys", - "name": "keys", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_json_value_to_nyash_box", - "name": "json_value_to_nyash_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 241, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_nyash_box_to_json_value", - "name": "nyash_box_to_json_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 278, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 17, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_JSONBox", - "name": "JSONBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "map_box.rs", - "path": "./src/boxes/map_box.rs", - "language": "rust", - "size_bytes": 9986, - "total_lines": 320, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.696178976Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has", - "name": "has", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_keys", - "name": "keys", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_values", - "name": "values", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_size", - "name": "size", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_forEach", - "name": "forEach", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toJSON", - "name": "toJSON", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_data", - "name": "get_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 237, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 253, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_identity", - "name": "is_identity", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 4, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MapBox", - "name": "MapBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_box.rs", - "path": "./src/boxes/math_box.rs", - "language": "rust", - "size_bytes": 16249, - "total_lines": 513, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.700533061Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_abs", - "name": "abs", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_max", - "name": "max", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_min", - "name": "min", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pow", - "name": "pow", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sqrt", - "name": "sqrt", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getPi", - "name": "getPi", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_getE", - "name": "getE", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sin", - "name": "sin", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cos", - "name": "cos", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tan", - "name": "tan", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log10", - "name": "log10", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exp", - "name": "exp", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_floor", - "name": "floor", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ceil", - "name": "ceil", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_round", - "name": "round", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 318, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 368, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 376, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 382, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 386, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 395, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 412, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_iter", - "name": "iter", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 452, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 470, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 472, - "line_end": 474, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 480, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 484, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 488, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 493, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 510, - "line_end": 512, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MathBox", - "name": "MathBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FloatBox", - "name": "FloatBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 343, - "line_end": 346, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RangeBox", - "name": "RangeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 417, - "line_end": 422, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/mod.rs", - "language": "rust", - "size_bytes": 4964, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.704557990Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "null_box.rs", - "path": "./src/boxes/null_box.rs", - "language": "rust", - "size_bytes": 6523, - "total_lines": 244, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.708087413Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_null", - "name": "is_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_not_null", - "name": "is_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_null", - "name": "check_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_not_null", - "name": "check_not_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_or_default", - "name": "get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_null", - "name": "null", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_creation", - "name": "test_null_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_check", - "name": "test_null_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_null_equality", - "name": "test_null_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_get_or_default", - "name": "test_get_or_default", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NullBox", - "name": "NullBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "p2p_box.rs", - "path": "./src/boxes/p2p_box.rs", - "language": "rust", - "size_bytes": 7286, - "total_lines": 211, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.711679897Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_node_id", - "name": "get_node_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_send", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on", - "name": "on", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_reachable", - "name": "is_reachable", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_transport_type", - "name": "get_transport_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_P2PBox", - "name": "P2PBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TransportKind", - "name": "TransportKind", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "qr_box.rs", - "path": "./src/boxes/qr_box.rs", - "language": "rust", - "size_bytes": 11209, - "total_lines": 340, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.715905719Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate", - "name": "generate", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_url", - "name": "generate_url", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_wifi", - "name": "generate_wifi", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_contact", - "name": "generate_contact", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_size", - "name": "set_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_colors", - "name": "set_colors", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_error_correction", - "name": "set_error_correction", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_info", - "name": "get_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_data_url", - "name": "get_data_url", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_base64_qr", - "name": "generate_base64_qr", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_to_canvas", - "name": "draw_to_canvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_simple_qr", - "name": "draw_simple_qr", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_simple_hash", - "name": "simple_hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_to_canvas", - "name": "draw_to_canvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scan_from_canvas", - "name": "scan_from_canvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scan_from_canvas", - "name": "scan_from_canvas", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_batch", - "name": "generate_batch", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 17, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 321, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_QRBox", - "name": "QRBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "random_box.rs", - "path": "./src/boxes/random_box.rs", - "language": "rust", - "size_bytes": 10874, - "total_lines": 315, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.720005353Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seed", - "name": "seed", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next_random", - "name": "next_random", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_random", - "name": "random", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randInt", - "name": "randInt", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randBool", - "name": "randBool", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_choice", - "name": "choice", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shuffle", - "name": "shuffle", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_randString", - "name": "randString", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_probability", - "name": "probability", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RandomBox", - "name": "RandomBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/regex/mod.rs", - "language": "rust", - "size_bytes": 3951, - "total_lines": 139, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.724817224Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_match", - "name": "is_match", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pattern", - "name": "pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test", - "name": "test", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_all", - "name": "find_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RegexBox", - "name": "RegexBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/result/mod.rs", - "language": "rust", - "size_bytes": 4699, - "total_lines": 151, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.729615513Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_ok", - "name": "new_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_err", - "name": "new_err", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_ok_bool", - "name": "is_ok_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_err", - "name": "is_err", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unwrap", - "name": "unwrap", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_ok", - "name": "is_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_value", - "name": "get_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_error", - "name": "get_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashResultBox", - "name": "NyashResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "simple_intent_box.rs", - "path": "./src/boxes/simple_intent_box.rs", - "language": "rust", - "size_bytes": 6910, - "total_lines": 248, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.733382432Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 240, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SimpleIntentBox", - "name": "SimpleIntentBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 168, - "line_end": 172, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "socket_box.rs", - "path": "./src/boxes/socket_box.rs", - "language": "rust", - "size_bytes": 22893, - "total_lines": 588, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.737592659Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bind", - "name": "bind", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_listen", - "name": "listen", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_accept", - "name": "accept", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_accept_timeout", - "name": "accept_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_connect", - "name": "connect", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_recv_timeout", - "name": "recv_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_http_request", - "name": "read_http_request", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 395, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close", - "name": "close", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_connected", - "name": "is_connected", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_server", - "name": "is_server", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 467, - "line_end": 476, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 513, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 517, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 525, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 531, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 535, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 565, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 569, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 577, - "line_end": 579, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 587, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SocketBox", - "name": "SocketBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sound_box.rs", - "path": "./src/boxes/sound_box.rs", - "language": "rust", - "size_bytes": 11559, - "total_lines": 371, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.742195333Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beep", - "name": "beep", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_beeps", - "name": "beeps", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tone", - "name": "tone", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_alert", - "name": "alert", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_success", - "name": "success", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pattern", - "name": "pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_volumeTest", - "name": "volumeTest", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_interval", - "name": "interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 370, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SoundBox", - "name": "SoundBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/stream/mod.rs", - "language": "rust", - "size_bytes": 7636, - "total_lines": 230, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.747238873Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_data", - "name": "from_data", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_len", - "name": "len", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_position", - "name": "position", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stream_write", - "name": "stream_write", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stream_read", - "name": "stream_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_position", - "name": "get_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_length", - "name": "get_length", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stream_reset", - "name": "stream_reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 152, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashStreamBox", - "name": "NyashStreamBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "string_box.rs", - "path": "./src/boxes/string_box.rs", - "language": "rust", - "size_bytes": 6217, - "total_lines": 199, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.751761154Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 58, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 60, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_integer", - "name": "to_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "timer_box.rs", - "path": "./src/boxes/timer_box.rs", - "language": "rust", - "size_bytes": 6916, - "total_lines": 244, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.755382624Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_performance_now", - "name": "performance_now", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_timeout", - "name": "set_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_interval", - "name": "set_interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_timeout", - "name": "clear_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_interval", - "name": "clear_interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_request_animation_frame", - "name": "request_animation_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cancel_animation_frame", - "name": "cancel_animation_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_timeout", - "name": "set_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_interval", - "name": "set_interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_timeout", - "name": "clear_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_interval", - "name": "clear_interval", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_request_animation_frame", - "name": "request_animation_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cancel_animation_frame", - "name": "cancel_animation_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TimerBox", - "name": "TimerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "time_box.rs", - "path": "./src/boxes/time_box.rs", - "language": "rust", - "size_bytes": 14855, - "total_lines": 509, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.759503427Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fromTimestamp", - "name": "fromTimestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sleep", - "name": "sleep", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_now", - "name": "now", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_timestamp", - "name": "from_timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_year", - "name": "year", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_month", - "name": "month", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_day", - "name": "day", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hour", - "name": "hour", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_minute", - "name": "minute", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_second", - "name": "second", - "symbol_type": "Function", - "file_path": "", - "line_start": 315, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_timestamp", - "name": "timestamp", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_toISOString", - "name": "toISOString", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addDays", - "name": "addDays", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 350, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_addHours", - "name": "addHours", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 377, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 382, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 397, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 401, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 413, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 419, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_elapsed", - "name": "elapsed", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 446, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 452, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 479, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 486, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 490, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 492, - "line_end": 494, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 502, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 508, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TimeBox", - "name": "TimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBox", - "name": "DateTimeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 248, - "line_end": 251, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimerBox", - "name": "TimerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 424, - "line_end": 427, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/boxes/web/mod.rs", - "language": "rust", - "size_bytes": 566, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.764089202Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "web_canvas_box.rs", - "path": "./src/boxes/web/web_canvas_box.rs", - "language": "rust", - "size_bytes": 9597, - "total_lines": 327, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.767593948Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_canvas_element", - "name": "get_canvas_element", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_2d_context", - "name": "get_2d_context", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 22, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_fill_style", - "name": "set_fill_style", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_stroke_style", - "name": "set_stroke_style", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_line_width", - "name": "set_line_width", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fill_rect", - "name": "fill_rect", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stroke_rect", - "name": "stroke_rect", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fill_circle", - "name": "fill_circle", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stroke_circle", - "name": "stroke_circle", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_draw_line", - "name": "draw_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fill_text", - "name": "fill_text", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stroke_text", - "name": "stroke_text", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_begin_path", - "name": "begin_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_move_to", - "name": "move_to", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_line_to", - "name": "line_to", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_close_path", - "name": "close_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fill", - "name": "fill", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stroke", - "name": "stroke", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore", - "name": "restore", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_rotate", - "name": "rotate", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scale", - "name": "scale", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_translate", - "name": "translate", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_width", - "name": "get_width", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_height", - "name": "get_height", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resize", - "name": "resize", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 310, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 319, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WebCanvasBox", - "name": "WebCanvasBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "web_console_box.rs", - "path": "./src/boxes/web/web_console_box.rs", - "language": "rust", - "size_bytes": 6202, - "total_lines": 199, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.771450913Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_target_element", - "name": "get_target_element", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_append_console_line", - "name": "append_console_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_log", - "name": "log", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_warn", - "name": "warn", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_error", - "name": "error", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_info", - "name": "info", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_debug", - "name": "debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_separator", - "name": "separator", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_group", - "name": "group", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_group_end", - "name": "group_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WebConsoleBox", - "name": "WebConsoleBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "web_display_box.rs", - "path": "./src/boxes/web/web_display_box.rs", - "language": "rust", - "size_bytes": 5596, - "total_lines": 192, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.775609995Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_target_element", - "name": "get_target_element", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print", - "name": "print", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_println", - "name": "println", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_html", - "name": "set_html", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_append_html", - "name": "append_html", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_css", - "name": "set_css", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_class", - "name": "add_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_class", - "name": "remove_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hide", - "name": "hide", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scroll_to_bottom", - "name": "scroll_to_bottom", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WebDisplayBox", - "name": "WebDisplayBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_arithmetic.rs", - "path": "./src/box_arithmetic.rs", - "language": "rust", - "size_bytes": 24149, - "total_lines": 742, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.781069565Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 221, - "column_start": 4, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 4, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 318, - "column_start": 4, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 321, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 330, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 331, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 334, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 4, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 336, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 404, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 424, - "column_start": 4, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 436, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 437, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 440, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 441, - "line_end": 441, - "column_start": 4, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 442, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 448, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 465, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 507, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 511, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 512, - "column_start": 4, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 513, - "line_end": 515, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 519, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 523, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 527, - "line_end": 530, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 541, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 543, - "line_end": 545, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 554, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 560, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less", - "name": "less", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 586, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater", - "name": "greater", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 602, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less_equal", - "name": "less_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 605, - "line_end": 618, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_greater_equal", - "name": "greater_equal", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 634, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_integers", - "name": "test_add_box_integers", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_strings", - "name": "test_add_box_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 659, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_subtract_box", - "name": "test_subtract_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 669, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiply_box", - "name": "test_multiply_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_divide_box", - "name": "test_divide_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 690, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_divide_by_zero", - "name": "test_divide_by_zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 700, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_modulo_box", - "name": "test_modulo_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 710, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_modulo_by_zero", - "name": "test_modulo_by_zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 713, - "line_end": 720, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_modulo_chip8_pattern", - "name": "test_modulo_chip8_pattern", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 731, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_compare_box", - "name": "test_compare_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 741, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AddBox", - "name": "AddBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SubtractBox", - "name": "SubtractBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 151, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MultiplyBox", - "name": "MultiplyBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 249, - "line_end": 253, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DivideBox", - "name": "DivideBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 346, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ModuloBox", - "name": "ModuloBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 452, - "line_end": 456, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompareBox", - "name": "CompareBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 564, - "line_end": 564, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "builtin.rs", - "path": "./src/box_factory/builtin.rs", - "language": "rust", - "size_bytes": 22521, - "total_lines": 596, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.787615221Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_native_full", - "name": "native_full", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 49, - "column_start": 4, - "column_end": 52, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_native_minimal", - "name": "native_minimal", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_wasm_playground", - "name": "wasm_playground", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_groups", - "name": "new_with_groups", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_basic_types", - "name": "register_basic_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 121, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 141, - "column_start": 36, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 135, - "column_start": 37, - "column_end": 29, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 162, - "column_start": 33, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 182, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 37, - "column_end": 29, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 33, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_container_types", - "name": "register_container_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 200, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 210, - "column_start": 32, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 220, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 231, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_utility_types", - "name": "register_utility_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 244, - "column_start": 33, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 254, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 264, - "column_start": 33, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 274, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_io_types", - "name": "register_io_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 287, - "column_start": 36, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 297, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_network_types", - "name": "register_network_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 365, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 310, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 320, - "column_start": 39, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 330, - "column_start": 39, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 340, - "column_start": 40, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 350, - "column_start": 41, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 364, - "column_start": 32, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 362, - "column_start": 25, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_text_types", - "name": "register_text_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 396, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 381, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 395, - "column_start": 33, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_misc_types", - "name": "register_misc_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 399, - "line_end": 475, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 408, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 413, - "line_end": 420, - "column_start": 38, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 436, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 430, - "column_start": 77, - "column_end": 179, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 431, - "column_start": 75, - "column_end": 177, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 433, - "column_start": 69, - "column_end": 171, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 448, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 451, - "line_end": 465, - "column_start": 35, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 474, - "column_start": 34, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_native_types", - "name": "register_native_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 502, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 488, - "column_start": 37, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 500, - "column_start": 37, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_wasm_types", - "name": "register_wasm_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 506, - "line_end": 555, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 522, - "column_start": 39, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 538, - "column_start": 39, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 554, - "column_start": 38, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 550, - "column_start": 25, - "column_end": 114, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 552, - "column_start": 25, - "column_end": 115, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 563, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 579, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 583, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 582, - "column_start": 33, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_builtin_factory", - "name": "is_builtin_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 585, - "column_start": 4, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BuiltinGroups", - "name": "BuiltinGroups", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BuiltinBoxFactory", - "name": "BuiltinBoxFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/box_factory/mod.rs", - "language": "rust", - "size_bytes": 6681, - "total_lines": 203, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.792070352Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_is_available", - "name": "is_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_supports_birth", - "name": "supports_birth", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_builtin_factory", - "name": "is_builtin_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register", - "name": "register", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_reserved_type", - "name": "is_reserved_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 83, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_type", - "name": "has_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_available_types", - "name": "available_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_registry_creation", - "name": "test_registry_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxFactory", - "name": "BoxFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_UnifiedBoxRegistry", - "name": "UnifiedBoxRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin.rs", - "path": "./src/box_factory/plugin.rs", - "language": "rust", - "size_bytes": 1630, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.795400706Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_available", - "name": "is_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginBoxFactory", - "name": "PluginBoxFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "user_defined.rs", - "path": "./src/box_factory/user_defined.rs", - "language": "rust", - "size_bytes": 1803, - "total_lines": 64, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.798513372Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 23, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 40, - "column_start": 43, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_available", - "name": "is_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_UserDefinedBoxFactory", - "name": "UserDefinedBoxFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_operators.rs", - "path": "./src/box_operators.rs", - "language": "rust", - "size_bytes": 23125, - "total_lines": 680, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.803076366Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sub", - "name": "sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mul", - "name": "mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_div", - "name": "div", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_add", - "name": "try_add", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_add_with", - "name": "can_add_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub", - "name": "try_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_sub_with", - "name": "can_sub_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul", - "name": "try_mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_mul_with", - "name": "can_mul_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div", - "name": "try_div", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_div_with", - "name": "can_div_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sub", - "name": "sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mul", - "name": "mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_div", - "name": "div", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_add", - "name": "try_add", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_add_with", - "name": "can_add_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub", - "name": "try_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_sub_with", - "name": "can_sub_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul", - "name": "try_mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_mul_with", - "name": "can_mul_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div", - "name": "try_div", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_div_with", - "name": "can_div_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mul", - "name": "mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_add", - "name": "try_add", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_add_with", - "name": "can_add_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub", - "name": "try_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_sub_with", - "name": "can_sub_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul", - "name": "try_mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 357, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_mul_with", - "name": "can_mul_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 361, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div", - "name": "try_div", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_div_with", - "name": "can_div_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_add", - "name": "try_add", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 404, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_add_with", - "name": "can_add_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub", - "name": "try_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 426, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_sub_with", - "name": "can_sub_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul", - "name": "try_mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 434, - "line_end": 448, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_mul_with", - "name": "can_mul_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 450, - "line_end": 452, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div", - "name": "try_div", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 467, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_div_with", - "name": "can_div_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_add", - "name": "resolve_add", - "symbol_type": "Function", - "file_path": "", - "line_start": 482, - "line_end": 519, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_sub", - "name": "resolve_sub", - "symbol_type": "Function", - "file_path": "", - "line_start": 522, - "line_end": 544, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_mul", - "name": "resolve_mul", - "symbol_type": "Function", - "file_path": "", - "line_start": 547, - "line_end": 581, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_div", - "name": "resolve_div", - "symbol_type": "Function", - "file_path": "", - "line_start": 584, - "line_end": 620, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_integer_addition", - "name": "test_integer_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 633, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_concatenation", - "name": "test_string_concatenation", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 641, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_repetition", - "name": "test_string_repetition", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 649, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_dynamic_addition", - "name": "test_dynamic_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 660, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_boolean_arithmetic", - "name": "test_boolean_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 668, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_can_add_with", - "name": "test_can_add_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_OperatorResolver", - "name": "OperatorResolver", - "symbol_type": "Class", - "file_path": "", - "line_start": 478, - "line_end": 478, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_trait.rs", - "path": "./src/box_trait.rs", - "language": "rust", - "size_bytes": 26947, - "total_lines": 953, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.808760493Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_next_box_id", - "name": "next_box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_builtin_box", - "name": "is_builtin_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_parent_type", - "name": "with_parent_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_identity", - "name": "is_identity", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 4, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_or_share", - "name": "clone_or_share", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_arc", - "name": "clone_arc", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_empty", - "name": "empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split", - "name": "split", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 65, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 17, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find", - "name": "find", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace", - "name": "replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trim", - "name": "trim", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_upper", - "name": "to_upper", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_lower", - "name": "to_lower", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_starts_with", - "name": "starts_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with", - "name": "ends_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_join", - "name": "join", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 211, - "column_start": 21, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_length", - "name": "length", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_integer", - "name": "to_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_substring", - "name": "substring", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 280, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_zero", - "name": "zero", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 341, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 376, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 382, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_true_box", - "name": "true_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 402, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_false_box", - "name": "false_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 412, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 424, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 446, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 450, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 455, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 461, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 475, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 479, - "line_end": 481, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 485, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 493, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 503, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 509, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 511, - "line_end": 513, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 517, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 526, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 532, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 546, - "line_end": 551, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 561, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 564, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 575, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 578, - "line_end": 583, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_copy", - "name": "copy", - "symbol_type": "Function", - "file_path": "", - "line_start": 586, - "line_end": 591, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 597, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 601, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 605, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 607, - "line_end": 609, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 611, - "line_end": 613, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 617, - "line_end": 619, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 627, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 629, - "line_end": 631, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 635, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 638, - "line_end": 640, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 646, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 658, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 670, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 672, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 682, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 686, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 692, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 700, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 704, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 708, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 711, - "line_end": 713, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 717, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_success", - "name": "new_success", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 740, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_error", - "name": "new_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 742, - "line_end": 749, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_ok", - "name": "is_ok", - "symbol_type": "Function", - "file_path": "", - "line_start": 754, - "line_end": 756, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_value", - "name": "get_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 759, - "line_end": 764, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_error", - "name": "get_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 767, - "line_end": 772, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 776, - "line_end": 778, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 782, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 786, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 788, - "line_end": 790, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 794, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 798, - "line_end": 812, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 814, - "line_end": 838, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 840, - "line_end": 842, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 844, - "line_end": 858, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 861, - "line_end": 863, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 867, - "line_end": 869, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_box_creation", - "name": "test_string_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 883, - "line_end": 888, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_integer_box_creation", - "name": "test_integer_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 891, - "line_end": 896, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bool_box_creation", - "name": "test_bool_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 904, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_equality", - "name": "test_box_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 907, - "line_end": 914, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_integers", - "name": "test_add_box_integers", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 925, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_add_box_strings", - "name": "test_add_box_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 928, - "line_end": 936, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_ids_unique", - "name": "test_box_ids_unique", - "symbol_type": "Function", - "file_path": "", - "line_start": 939, - "line_end": 945, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_void_box", - "name": "test_void_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 952, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxBase", - "name": "BoxBase", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxCore", - "name": "BoxCore", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashBox", - "name": "NyashBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 129, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StringBox", - "name": "StringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IntegerBox", - "name": "IntegerBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 312, - "line_end": 315, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoolBox", - "name": "BoolBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 387, - "line_end": 390, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_VoidBox", - "name": "VoidBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 466, - "line_end": 468, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBox", - "name": "FileBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 540, - "line_end": 543, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 651, - "line_end": 655, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ResultBox", - "name": "ResultBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 725, - "line_end": 730, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "channel_box.rs", - "path": "./src/channel_box.rs", - "language": "rust", - "size_bytes": 7188, - "total_lines": 252, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.814042636Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_link", - "name": "link", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_handler", - "name": "register_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 76, - "column_start": 21, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 77, - "column_start": 32, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_sender", - "name": "sender", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_receiver", - "name": "receiver", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_broadcast", - "name": "broadcast", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ChannelBox", - "name": "ChannelBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MessageBox", - "name": "MessageBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 180, - "line_end": 184, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./src/cli.rs", - "language": "rust", - "size_bytes": 7910, - "total_lines": 218, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.817925215Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_command", - "name": "build_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_matches", - "name": "from_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_debug_fuel", - "name": "parse_debug_fuel", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_debug_fuel", - "name": "test_parse_debug_fuel", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_default_config", - "name": "test_default_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CliConfig", - "name": "CliConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/config/mod.rs", - "language": "rust", - "size_bytes": 212, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.822223940Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_toml_v2.rs", - "path": "./src/config/nyash_toml_v2.rs", - "language": "rust", - "size_bytes": 7202, - "total_lines": 222, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.825489061Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_kind_str", - "name": "kind_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_abi_version", - "name": "default_abi_version", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_file", - "name": "from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_libraries", - "name": "parse_libraries", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 69, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 130, - "column_start": 34, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 136, - "column_start": 29, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 44, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 37, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 140, - "column_start": 34, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_config", - "name": "get_box_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 22, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 161, - "column_start": 22, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 22, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_library_for_box", - "name": "find_library_for_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 168, - "column_start": 18, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 17, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_plugin_path", - "name": "resolve_plugin_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_v2_config", - "name": "test_parse_v2_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashConfigV2", - "name": "NyashConfigV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LibraryDefinition", - "name": "LibraryDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginPaths", - "name": "PluginPaths", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxTypeConfig", - "name": "BoxTypeConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodDefinition", - "name": "MethodDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ArgDecl", - "name": "ArgDecl", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/core/mod.rs", - "language": "rust", - "size_bytes": 71, - "total_lines": 4, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.830048958Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "model.rs", - "path": "./src/core/model.rs", - "language": "rust", - "size_bytes": 975, - "total_lines": 30, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.832924117Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxDeclaration", - "name": "BoxDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "leak_tracker.rs", - "path": "./src/debug/leak_tracker.rs", - "language": "rust", - "size_bytes": 1200, - "total_lines": 38, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.837285820Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 5, - "column_start": 39, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 6, - "column_start": 76, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 10, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_plugin", - "name": "register_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_plugin", - "name": "finalize_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 44, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Reporter", - "name": "Reporter", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 0, - "column_end": 16, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "environment.rs", - "path": "./src/environment.rs", - "language": "rust", - "size_bytes": 12861, - "total_lines": 359, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.841505488Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_global", - "name": "new_global", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_child", - "name": "new_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_undefine", - "name": "undefine", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_variables", - "name": "list_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_info", - "name": "scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_scope_chain_info", - "name": "scope_chain_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_all_variables", - "name": "dump_all_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track_box", - "name": "track_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all_boxes", - "name": "finalize_all_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_parent", - "name": "new_with_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_define", - "name": "define", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 60, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_native", - "name": "as_native", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_global_environment", - "name": "test_global_environment", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_nested_scopes", - "name": "test_nested_scopes", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_shadowing", - "name": "test_variable_shadowing", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 291, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_variable_setting", - "name": "test_variable_setting", - "symbol_type": "Function", - "file_path": "", - "line_start": 294, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_scope_info", - "name": "test_scope_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_python_compat", - "name": "test_python_compat", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Environment", - "name": "Environment", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EnvironmentError", - "name": "EnvironmentError", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PythonCompatEnvironment", - "name": "PythonCompatEnvironment", - "symbol_type": "Class", - "file_path": "", - "line_start": 193, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "exception_box.rs", - "path": "./src/exception_box.rs", - "language": "rust", - "size_bytes": 3100, - "total_lines": 120, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.845569309Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_cause", - "name": "with_cause", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_stack_frame", - "name": "add_stack_frame", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_full_message", - "name": "get_full_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_exception_type", - "name": "is_exception_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_exception", - "name": "create_exception", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ErrorBox", - "name": "ErrorBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "finalization.rs", - "path": "./src/finalization.rs", - "language": "rust", - "size_bytes": 3244, - "total_lines": 112, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.848930965Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_as_finalized", - "name": "mark_as_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_track", - "name": "track", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exclude_from_finalization", - "name": "exclude_from_finalization", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_all", - "name": "finalize_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_finalization_tracking", - "name": "test_finalization_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxFinalizer", - "name": "BoxFinalizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instance_v2.rs", - "path": "./src/instance_v2.rs", - "language": "rust", - "size_bytes": 17199, - "total_lines": 454, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.853471653Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_any_box", - "name": "from_any_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_declaration", - "name": "from_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_box_info", - "name": "new_with_box_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_ng", - "name": "get_field_ng", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_ng", - "name": "set_field_ng", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_dynamic", - "name": "set_field_dynamic", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method", - "name": "get_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_method", - "name": "has_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fini", - "name": "fini", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_unified", - "name": "get_field_unified", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_unified", - "name": "set_field_unified", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_weak_field", - "name": "set_weak_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_weak_field_from_legacy", - "name": "set_weak_field_from_legacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_weak_field", - "name": "get_weak_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_legacy", - "name": "get_field_legacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_legacy", - "name": "set_field_legacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field_dynamic_legacy", - "name": "set_field_dynamic_legacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_weak_field", - "name": "is_weak_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invalidate_weak_references_to", - "name": "invalidate_weak_references_to", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_global_invalidate_weak_references", - "name": "global_invalidate_weak_references", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_fields", - "name": "get_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field", - "name": "get_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_field", - "name": "set_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 59, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 368, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_from_any_box_creation", - "name": "test_from_any_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_from_declaration_creation", - "name": "test_from_declaration_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_field_operations", - "name": "test_field_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_unified_approach", - "name": "test_unified_approach", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 453, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_InstanceBox", - "name": "InstanceBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "async_methods.rs", - "path": "./src/interpreter/async_methods.rs", - "language": "rust", - "size_bytes": 5472, - "total_lines": 132, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.858454712Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_future_method", - "name": "execute_future_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_channel_method", - "name": "execute_channel_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "async_ops.rs", - "path": "./src/interpreter/async_ops.rs", - "language": "rust", - "size_bytes": 862, - "total_lines": 25, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.861654074Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_await", - "name": "execute_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_methods.rs", - "path": "./src/interpreter/box_methods.rs", - "language": "rust", - "size_bytes": 10350, - "total_lines": 277, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.864950352Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_null_method", - "name": "execute_null_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_egui_method", - "name": "execute_egui_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_console_method", - "name": "execute_console_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 25, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 25, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 25, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "core.rs", - "path": "./src/interpreter/core.rs", - "language": "rust", - "size_bytes": 40342, - "total_lines": 1012, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.870117529Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_debug_log", - "name": "debug_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detailed_message", - "name": "detailed_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_with_groups", - "name": "new_with_groups", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_shared", - "name": "with_shared", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_shared_and_groups", - "name": "with_shared_and_groups", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box_factory", - "name": "register_box_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_node", - "name": "execute_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 451, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 456, - "line_end": 522, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_variable", - "name": "set_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_local_variable", - "name": "declare_local_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 571, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_declare_outbox_variable", - "name": "declare_outbox_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 574, - "line_end": 584, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_local_vars", - "name": "save_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 587, - "line_end": 598, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 589, - "line_end": 596, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_local_vars", - "name": "restore_local_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 623, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 621, - "column_start": 17, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_outbox_vars", - "name": "save_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 626, - "line_end": 637, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 628, - "line_end": 635, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_restore_outbox_vars", - "name": "restore_outbox_vars", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 655, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 653, - "line_end": 653, - "column_start": 17, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_global_function", - "name": "register_global_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 658, - "line_end": 663, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 661, - "line_end": 661, - "column_start": 21, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_truthy", - "name": "is_truthy", - "symbol_type": "Function", - "file_path": "", - "line_start": 670, - "line_end": 685, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable", - "name": "get_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 691, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_execution", - "name": "test_simple_execution", - "symbol_type": "Function", - "file_path": "", - "line_start": 702, - "line_end": 713, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_arithmetic", - "name": "test_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 716, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_statement", - "name": "test_if_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 748, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_instance_creation", - "name": "test_box_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 751, - "line_end": 781, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_static_box", - "name": "register_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 789, - "line_end": 797, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 791, - "line_end": 793, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_static_box_declaration", - "name": "register_static_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 800, - "line_end": 830, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_static_box_initialized", - "name": "ensure_static_box_initialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 833, - "line_end": 899, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 837, - "line_end": 839, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_static_box_state", - "name": "set_static_box_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 902, - "line_end": 913, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 904, - "line_end": 906, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_statics_namespace", - "name": "ensure_statics_namespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 916, - "line_end": 944, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 920, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_static_instance", - "name": "set_static_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 947, - "line_end": 974, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 951, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_static_box", - "name": "is_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 977, - "line_end": 983, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trigger_weak_reference_invalidation", - "name": "trigger_weak_reference_invalidation", - "symbol_type": "Function", - "file_path": "", - "line_start": 986, - "line_end": 1011, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RuntimeError", - "name": "RuntimeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SharedState", - "name": "SharedState", - "symbol_type": "Class", - "file_path": "", - "line_start": 165, - "line_end": 180, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashInterpreter", - "name": "NyashInterpreter", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 234, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "delegation.rs", - "path": "./src/interpreter/delegation.rs", - "language": "rust", - "size_bytes": 17609, - "total_lines": 379, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.875623491Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_from_call", - "name": "execute_from_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_parent_method", - "name": "execute_parent_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_from_parent_constructor", - "name": "execute_from_parent_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 21, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 21, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 21, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_builtin_box_method", - "name": "execute_builtin_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_builtin_birth_method", - "name": "execute_builtin_birth_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "access.rs", - "path": "./src/interpreter/expressions/access.rs", - "language": "rust", - "size_bytes": 7675, - "total_lines": 169, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.880598101Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_field_access", - "name": "execute_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_static_field_access", - "name": "execute_static_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_await", - "name": "execute_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "builtins.rs", - "path": "./src/interpreter/expressions/builtins.rs", - "language": "rust", - "size_bytes": 8543, - "total_lines": 185, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.884216126Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_builtin_box_method", - "name": "execute_builtin_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_builtin_birth_method", - "name": "execute_builtin_birth_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "calls.rs", - "path": "./src/interpreter/expressions/calls.rs", - "language": "rust", - "size_bytes": 53502, - "total_lines": 1016, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.890325681Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_method_call", - "name": "execute_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 715, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 144, - "column_start": 33, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 570, - "line_end": 572, - "column_start": 40, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_from_call", - "name": "execute_from_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 718, - "line_end": 915, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 725, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 758, - "line_end": 758, - "column_start": 47, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_from_parent_constructor", - "name": "execute_from_parent_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 918, - "line_end": 989, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 930, - "line_end": 930, - "column_start": 21, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 931, - "column_start": 21, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 932, - "line_end": 932, - "column_start": 21, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_plugin_box_v2_method", - "name": "execute_plugin_box_v2_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 993, - "line_end": 1015, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1009, - "line_end": 1009, - "column_start": 49, - "column_end": 131, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/interpreter/expressions/mod.rs", - "language": "rust", - "size_bytes": 8417, - "total_lines": 205, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.895585854Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_expression", - "name": "execute_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 70, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 80, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 36, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_object_id", - "name": "get_object_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hash_string", - "name": "hash_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "operators.rs", - "path": "./src/interpreter/expressions/operators.rs", - "language": "rust", - "size_bytes": 12097, - "total_lines": 297, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.899480994Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_unwrap_instance", - "name": "unwrap_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_add_operation", - "name": "try_add_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub_operation", - "name": "try_sub_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul_operation", - "name": "try_mul_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 113, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div_operation", - "name": "try_div_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 132, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mod_operation", - "name": "try_mod_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 147, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binary_op", - "name": "execute_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unary_op", - "name": "execute_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "field_access.rs", - "path": "./src/interpreter/field_access.rs", - "language": "rust", - "size_bytes": 5301, - "total_lines": 128, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.903798031Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_field_access", - "name": "execute_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_static_field_access", - "name": "execute_static_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_instance_field_access", - "name": "execute_instance_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_weak_field_access", - "name": "handle_weak_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_static_box", - "name": "is_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "functions.rs", - "path": "./src/interpreter/functions.rs", - "language": "rust", - "size_bytes": 7062, - "total_lines": 156, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.907433948Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_function_call", - "name": "execute_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_function_declaration", - "name": "register_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 69, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_matches_type_name", - "name": "matches_type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cast_to_type", - "name": "cast_to_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "io.rs", - "path": "./src/interpreter/io.rs", - "language": "rust", - "size_bytes": 4455, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.910961537Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_include", - "name": "execute_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_arrow", - "name": "execute_arrow", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nowait", - "name": "execute_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 106, - "column_start": 22, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_methods.rs", - "path": "./src/interpreter/math_methods.rs", - "language": "rust", - "size_bytes": 11003, - "total_lines": 274, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.914928156Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_math_method", - "name": "execute_math_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_random_method", - "name": "execute_random_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "basic_methods.rs", - "path": "./src/interpreter/methods/basic_methods.rs", - "language": "rust", - "size_bytes": 24821, - "total_lines": 544, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.920671647Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_string_method", - "name": "execute_string_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_integer_method", - "name": "execute_integer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_bool_method", - "name": "execute_bool_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_float_method", - "name": "execute_float_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 543, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "collection_methods.rs", - "path": "./src/interpreter/methods/collection_methods.rs", - "language": "rust", - "size_bytes": 13047, - "total_lines": 303, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.925377445Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_array_method", - "name": "execute_array_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_map_method", - "name": "execute_map_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "data_methods.rs", - "path": "./src/interpreter/methods/data_methods.rs", - "language": "rust", - "size_bytes": 9960, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.929492916Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_buffer_method", - "name": "execute_buffer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_json_method", - "name": "execute_json_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_regex_method", - "name": "execute_regex_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "http_methods.rs", - "path": "./src/interpreter/methods/http_methods.rs", - "language": "rust", - "size_bytes": 12013, - "total_lines": 305, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.933629714Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_socket_method", - "name": "execute_socket_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_http_server_method", - "name": "execute_http_server_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_http_request_method", - "name": "execute_http_request_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_http_response_method", - "name": "execute_http_response_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "io_methods.rs", - "path": "./src/interpreter/methods/io_methods.rs", - "language": "rust", - "size_bytes": 15845, - "total_lines": 347, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.937435724Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_file_method", - "name": "execute_file_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_result_method", - "name": "execute_result_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "math_methods.rs", - "path": "./src/interpreter/methods/math_methods.rs", - "language": "rust", - "size_bytes": 17692, - "total_lines": 379, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.941565114Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_math_proxy_method", - "name": "execute_math_proxy_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_random_proxy_method", - "name": "execute_random_proxy_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_time_proxy_method", - "name": "execute_time_proxy_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_datetime_proxy_method", - "name": "execute_datetime_proxy_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_unary_math_fn", - "name": "call_unary_math_fn", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_binary_math_fn", - "name": "call_binary_math_fn", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_float", - "name": "to_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 366, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_integer", - "name": "to_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/interpreter/methods/mod.rs", - "language": "rust", - "size_bytes": 1098, - "total_lines": 27, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.945484234Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "network_methods.rs", - "path": "./src/interpreter/methods/network_methods.rs", - "language": "rust", - "size_bytes": 5319, - "total_lines": 124, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.948730652Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_http_method", - "name": "execute_http_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_stream_method", - "name": "execute_stream_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "p2p_methods.rs", - "path": "./src/interpreter/methods/p2p_methods.rs", - "language": "rust", - "size_bytes": 4181, - "total_lines": 113, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.952066748Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_intent_box_method", - "name": "execute_intent_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/interpreter/mod.rs", - "language": "rust", - "size_bytes": 3030, - "total_lines": 104, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.956214388Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_ControlFlow", - "name": "ControlFlow", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConstructorContext", - "name": "ConstructorContext", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StaticBoxDefinition", - "name": "StaticBoxDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 70, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StaticBoxState", - "name": "StaticBoxState", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDeclaration", - "name": "FunctionDeclaration", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "objects.rs", - "path": "./src/interpreter/objects.rs", - "language": "rust", - "size_bytes": 62373, - "total_lines": 1272, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.961572468Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_new", - "name": "execute_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 914, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 17, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 890, - "line_end": 893, - "column_start": 21, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_constructor", - "name": "execute_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 976, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box_declaration", - "name": "register_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 1036, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_generic_arguments", - "name": "validate_generic_arguments", - "symbol_type": "Function", - "file_path": "", - "line_start": 1039, - "line_end": 1076, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_valid_type", - "name": "is_valid_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 1079, - "line_end": 1086, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_parent_constructor", - "name": "execute_parent_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 1089, - "line_end": 1120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1106, - "line_end": 1108, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_inheritance", - "name": "resolve_inheritance", - "symbol_type": "Function", - "file_path": "", - "line_start": 1123, - "line_end": 1211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_specialize_generic_class", - "name": "specialize_generic_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 1214, - "line_end": 1260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_substitute_types_in_fields", - "name": "substitute_types_in_fields", - "symbol_type": "Function", - "file_path": "", - "line_start": 1263, - "line_end": 1271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "objects_basic_constructors.rs", - "path": "./src/interpreter/objects_basic_constructors.rs", - "language": "rust", - "size_bytes": 7229, - "total_lines": 157, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.966989164Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_create_basic_box", - "name": "create_basic_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "objects_non_basic_constructors.rs", - "path": "./src/interpreter/objects_non_basic_constructors.rs", - "language": "rust", - "size_bytes": 3405, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.970880288Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_create_non_basic_box", - "name": "create_non_basic_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "operators.rs", - "path": "./src/interpreter/operators.rs", - "language": "rust", - "size_bytes": 12593, - "total_lines": 328, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.974578549Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_add_operation", - "name": "try_add_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_sub_operation", - "name": "try_sub_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mul_operation", - "name": "try_mul_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_div_operation", - "name": "try_div_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_try_mod_operation", - "name": "try_mod_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_binary_op", - "name": "execute_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_unary_op", - "name": "execute_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compare_values", - "name": "compare_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_less_than_values", - "name": "less_than_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_truthy", - "name": "is_truthy", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_loader.rs", - "path": "./src/interpreter/plugin_loader.rs", - "language": "rust", - "size_bytes": 39637, - "total_lines": 1218, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.980318382Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read", - "name": "read", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 207, - "column_start": 73, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 224, - "column_start": 75, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write", - "name": "write", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 255, - "column_start": 66, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 263, - "column_start": 74, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exists", - "name": "exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 312, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 342, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 346, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 385, - "line_end": 387, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 391, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 395, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 397, - "line_end": 399, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 407, - "line_end": 409, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 419, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 427, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 441, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 462, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 493, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 471, - "line_end": 475, - "column_start": 75, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_range", - "name": "range", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 524, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 506, - "column_start": 76, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_int", - "name": "int", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 555, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 533, - "line_end": 537, - "column_start": 74, - "column_end": 25, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 561, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 565, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 567, - "line_end": 569, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 571, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 575, - "line_end": 577, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 581, - "line_end": 583, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 585, - "line_end": 593, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 595, - "line_end": 597, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 601, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 609, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 615, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 631, - "line_end": 636, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 640, - "line_end": 642, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 644, - "line_end": 646, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 648, - "line_end": 650, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 652, - "line_end": 654, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 656, - "line_end": 658, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 674, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 678, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 682, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 690, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 696, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 712, - "line_end": 717, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 721, - "line_end": 723, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 725, - "line_end": 727, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 729, - "line_end": 756, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 758, - "line_end": 760, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 762, - "line_end": 764, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 770, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 772, - "line_end": 778, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 780, - "line_end": 782, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 811, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 833, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 837, - "line_end": 839, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_file_plugin", - "name": "load_file_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 848, - "line_end": 923, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 880, - "line_end": 884, - "column_start": 43, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 888, - "line_end": 892, - "column_start": 58, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 900, - "column_start": 60, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_file_box", - "name": "create_file_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 927, - "line_end": 961, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 933, - "line_end": 937, - "column_start": 52, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 941, - "line_end": 945, - "column_start": 69, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_file_exists", - "name": "file_exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 992, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 971, - "line_end": 975, - "column_start": 52, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 979, - "line_end": 983, - "column_start": 71, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_math_plugin", - "name": "load_math_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 996, - "line_end": 1056, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1028, - "line_end": 1032, - "column_start": 43, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1036, - "line_end": 1040, - "column_start": 58, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_math_box", - "name": "create_math_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1060, - "line_end": 1087, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1067, - "line_end": 1071, - "column_start": 71, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_random_box", - "name": "create_random_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1091, - "line_end": 1118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1098, - "line_end": 1102, - "column_start": 73, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_time_box", - "name": "create_time_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 1122, - "line_end": 1149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1129, - "line_end": 1133, - "column_start": 71, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_datetime_now", - "name": "create_datetime_now", - "symbol_type": "Function", - "file_path": "", - "line_start": 1153, - "line_end": 1180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1160, - "line_end": 1164, - "column_start": 68, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_datetime_from_string", - "name": "create_datetime_from_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 1184, - "line_end": 1217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1189, - "line_end": 1193, - "column_start": 55, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1197, - "line_end": 1201, - "column_start": 70, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LoadedPlugin", - "name": "LoadedPlugin", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginInfo", - "name": "PluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_FileBoxHandle", - "name": "FileBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_MathBoxHandle", - "name": "MathBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_RandomBoxHandle", - "name": "RandomBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_TimeBoxHandle", - "name": "TimeBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_DateTimeBoxHandle", - "name": "DateTimeBoxHandle", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileBoxProxy", - "name": "FileBoxProxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MathBoxProxy", - "name": "MathBoxProxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 367, - "line_end": 370, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RandomBoxProxy", - "name": "RandomBoxProxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 448, - "line_end": 451, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TimeBoxProxy", - "name": "TimeBoxProxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 622, - "line_end": 625, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DateTimeBoxProxy", - "name": "DateTimeBoxProxy", - "symbol_type": "Class", - "file_path": "", - "line_start": 703, - "line_end": 706, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginLoader", - "name": "PluginLoader", - "symbol_type": "Class", - "file_path": "", - "line_start": 843, - "line_end": 843, - "column_start": 0, - "column_end": 24, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "special_methods.rs", - "path": "./src/interpreter/special_methods.rs", - "language": "rust", - "size_bytes": 9214, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.985846367Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_sound_method", - "name": "execute_sound_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_method_box_method", - "name": "execute_method_box_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_method_box", - "name": "invoke_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "statements.rs", - "path": "./src/interpreter/statements.rs", - "language": "rust", - "size_bytes": 28361, - "total_lines": 596, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.990426136Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_warn_if_must_use", - "name": "warn_if_must_use", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_statement", - "name": "execute_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_if", - "name": "execute_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_loop", - "name": "execute_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_assignment", - "name": "execute_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 465, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 363, - "line_end": 363, - "column_start": 41, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 384, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 398, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 418, - "line_end": 418, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 432, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 452, - "column_start": 33, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_try_catch", - "name": "execute_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_throw", - "name": "execute_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 565, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_using_statement", - "name": "execute_using_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 568, - "line_end": 585, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_stdlib_initialized", - "name": "ensure_stdlib_initialized", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 595, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "system_methods.rs", - "path": "./src/interpreter/system_methods.rs", - "language": "rust", - "size_bytes": 16494, - "total_lines": 391, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.995523592Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_time_method", - "name": "execute_time_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_datetime_method", - "name": "execute_datetime_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_timer_method", - "name": "execute_timer_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_debug_method", - "name": "execute_debug_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 348, - "column_start": 25, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "utils.rs", - "path": "./src/interpreter/utils.rs", - "language": "rust", - "size_bytes": 1779, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:49.999293398Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_get_object_id", - "name": "get_object_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_hash_string", - "name": "hash_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_to_nyash_value", - "name": "box_to_nyash_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "web_methods.rs", - "path": "./src/interpreter/web_methods.rs", - "language": "rust", - "size_bytes": 20660, - "total_lines": 453, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.003449488Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_web_display_method", - "name": "execute_web_display_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_web_console_method", - "name": "execute_web_console_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_web_canvas_method", - "name": "execute_web_canvas_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 452, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./src/lib.rs", - "language": "rust", - "size_bytes": 7907, - "total_lines": 225, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.008106796Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eval", - "name": "eval", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 17, - "column_end": 35, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 135, - "column_start": 20, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 175, - "column_start": 20, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 177, - "column_start": 28, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eval_single_block", - "name": "eval_single_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_complete_statement", - "name": "is_complete_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 218, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 49, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 50, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_version", - "name": "version", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashWasm", - "name": "NyashWasm", - "symbol_type": "Class", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./src/main.rs", - "language": "rust", - "size_bytes": 2231, - "total_lines": 81, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.011709691Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_main_functionality", - "name": "test_main_functionality", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "message_bus.rs", - "path": "./src/messaging/message_bus.rs", - "language": "rust", - "size_bytes": 4241, - "total_lines": 140, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.015841367Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_handler", - "name": "add_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_deliver", - "name": "deliver", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_node", - "name": "register_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unregister_node", - "name": "unregister_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_node_exists", - "name": "node_exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_route", - "name": "route", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_nodes", - "name": "get_nodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 133, - "column_start": 56, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_global", - "name": "global", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BusEndpoint", - "name": "BusEndpoint", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SendError", - "name": "SendError", - "symbol_type": "Class", - "file_path": "", - "line_start": 67, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MessageBusData", - "name": "MessageBusData", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/messaging/mod.rs", - "language": "rust", - "size_bytes": 347, - "total_lines": 9, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.019166189Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "method_box.rs", - "path": "./src/method_box.rs", - "language": "rust", - "size_bytes": 6737, - "total_lines": 220, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.022776069Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 69, - "column_start": 51, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke", - "name": "invoke", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_instance", - "name": "get_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_instance", - "name": "from_instance", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 183, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_local", - "name": "set_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_local", - "name": "get_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 34, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_variable", - "name": "resolve_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_method_box", - "name": "create_method_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxType", - "name": "BoxType", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionDefinition", - "name": "FunctionDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MethodBox", - "name": "MethodBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EphemeralInstance", - "name": "EphemeralInstance", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 164, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "basic_block.rs", - "path": "./src/mir/basic_block.rs", - "language": "rust", - "size_bytes": 13220, - "total_lines": 442, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.027687248Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 19, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_u32", - "name": "as_u32", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_usize", - "name": "from_usize", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_usize", - "name": "to_usize", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_instruction", - "name": "add_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_terminator", - "name": "is_terminator", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_successors_from_terminator", - "name": "update_successors_from_terminator", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_predecessor", - "name": "add_predecessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_predecessor", - "name": "remove_predecessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_all_instructions", - "name": "all_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_defined_values", - "name": "defined_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 24, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_used_values", - "name": "used_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 22, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_empty", - "name": "is_empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_terminated", - "name": "is_terminated", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ends_with_return", - "name": "ends_with_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_phi_instructions", - "name": "phi_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_non_phi_instructions", - "name": "non_phi_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 193, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_insert_instruction_after_phis", - "name": "insert_instruction_after_phis", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_terminator", - "name": "set_terminator", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_reachable", - "name": "mark_reachable", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seal", - "name": "seal", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_sealed", - "name": "is_sealed", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dominates", - "name": "dominates", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_next", - "name": "peek_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 303, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 21, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_block_creation", - "name": "test_basic_block_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instruction_addition", - "name": "test_instruction_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_terminator_addition", - "name": "test_terminator_addition", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_branch_successors", - "name": "test_branch_successors", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_block_id_generator", - "name": "test_basic_block_id_generator", - "symbol_type": "Function", - "file_path": "", - "line_start": 378, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_tracking", - "name": "test_value_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 414, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_phi_instruction_ordering", - "name": "test_phi_instruction_ordering", - "symbol_type": "Function", - "file_path": "", - "line_start": 417, - "line_end": 441, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BasicBlockId", - "name": "BasicBlockId", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 0, - "column_end": 33, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BasicBlock", - "name": "BasicBlock", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BasicBlockIdGenerator", - "name": "BasicBlockIdGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 241, - "line_end": 243, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "builder.rs", - "path": "./src/mir/builder.rs", - "language": "rust", - "size_bytes": 65692, - "total_lines": 1547, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.034562007Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_builder_debug_enabled", - "name": "builder_debug_enabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_builder_debug_log", - "name": "builder_debug_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_type_check", - "name": "emit_type_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_cast", - "name": "emit_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_weak_new", - "name": "emit_weak_new", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_weak_load", - "name": "emit_weak_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_barrier_read", - "name": "emit_barrier_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_barrier_write", - "name": "emit_barrier_write", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_lower_method_as_function", - "name": "lower_method_as_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_module", - "name": "build_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_expression", - "name": "build_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 494, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_literal", - "name": "build_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 514, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_binary_op", - "name": "build_binary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 541, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_unary_op", - "name": "build_unary_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 544, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_variable_access", - "name": "build_variable_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 566, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_assignment", - "name": "build_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 576, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_function_call", - "name": "build_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 615, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_print_statement", - "name": "build_print_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 618, - "line_end": 668, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_block", - "name": "build_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 671, - "line_end": 687, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 686, - "column_start": 37, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_if_statement", - "name": "build_if_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 757, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 749, - "column_start": 72, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_assigned_var", - "name": "extract_assigned_var", - "symbol_type": "Function", - "file_path": "", - "line_start": 761, - "line_end": 772, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 768, - "column_start": 43, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_instruction", - "name": "emit_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 801, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_block_exists", - "name": "ensure_block_exists", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 814, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_loop_statement", - "name": "build_loop_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 821, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_try_catch_statement", - "name": "build_try_catch_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 824, - "line_end": 903, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_throw_statement", - "name": "build_throw_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 906, - "line_end": 918, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_local_statement", - "name": "build_local_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 921, - "line_end": 946, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 942, - "line_end": 945, - "column_start": 37, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_return_statement", - "name": "build_return_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 949, - "line_end": 968, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_static_main_box", - "name": "build_static_main_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 971, - "line_end": 989, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_field_access", - "name": "build_field_access", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 1038, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_new_expression", - "name": "build_new_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1041, - "line_end": 1076, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_field_assignment", - "name": "build_field_assignment", - "symbol_type": "Function", - "file_path": "", - "line_start": 1079, - "line_end": 1116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_new_block", - "name": "start_new_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 1119, - "line_end": 1127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_current_block_terminated", - "name": "is_current_block_terminated", - "symbol_type": "Function", - "file_path": "", - "line_start": 1130, - "line_end": 1137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_convert_binary_operator", - "name": "convert_binary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 1140, - "line_end": 1156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_convert_unary_operator", - "name": "convert_unary_operator", - "symbol_type": "Function", - "file_path": "", - "line_start": 1159, - "line_end": 1166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_nowait_statement", - "name": "build_nowait_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 1169, - "line_end": 1184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_await_expression", - "name": "build_await_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1187, - "line_end": 1201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_me_expression", - "name": "build_me_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1204, - "line_end": 1219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_method_call", - "name": "build_method_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1222, - "line_end": 1348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_type_name_to_mir", - "name": "parse_type_name_to_mir", - "symbol_type": "Function", - "file_path": "", - "line_start": 1351, - "line_end": 1360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_string_literal", - "name": "extract_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 1364, - "line_end": 1376, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_from_expression", - "name": "build_from_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 1379, - "line_end": 1406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_box_declaration", - "name": "build_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 1409, - "line_end": 1447, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 1458, - "line_end": 1460, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_literal_building", - "name": "test_literal_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1469, - "line_end": 1483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binary_op_building", - "name": "test_binary_op_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1486, - "line_end": 1511, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_statement_building", - "name": "test_if_statement_building", - "symbol_type": "Function", - "file_path": "", - "line_start": 1514, - "line_end": 1546, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirBuilder", - "name": "MirBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOpType", - "name": "BinaryOpType", - "symbol_type": "Class", - "file_path": "", - "line_start": 1452, - "line_end": 1455, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "effect.rs", - "path": "./src/mir/effect.rs", - "language": "rust", - "size_bytes": 10987, - "total_lines": 355, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.040969528Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_bits", - "name": "from_bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bits", - "name": "bits", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add", - "name": "add", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove", - "name": "remove", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains", - "name": "contains", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains_any", - "name": "contains_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_contains_all", - "name": "contains_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_union", - "name": "union", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_intersection", - "name": "intersection", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_pure", - "name": "is_pure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_mut", - "name": "is_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_io", - "name": "is_io", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_control", - "name": "is_control", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_primary_category", - "name": "primary_category", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_read_only", - "name": "is_read_only", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_parallel_safe", - "name": "is_parallel_safe", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_moveable", - "name": "is_moveable", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_effect_names", - "name": "effect_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bitor", - "name": "bitor", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bitor_assign", - "name": "bitor_assign", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bitand", - "name": "bitand", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bitand_assign", - "name": "bitand_assign", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_mask_creation", - "name": "test_effect_mask_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_combination", - "name": "test_effect_combination", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_union", - "name": "test_effect_union", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parallel_safety", - "name": "test_parallel_safety", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_names", - "name": "test_effect_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_display", - "name": "test_effect_display", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_EffectMask", - "name": "EffectMask", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Effect", - "name": "Effect", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "function.rs", - "path": "./src/mir/function.rs", - "language": "rust", - "size_bytes": 14965, - "total_lines": 500, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.045287113Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next_value_id", - "name": "next_value_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_block", - "name": "add_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_block", - "name": "get_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_block_mut", - "name": "get_block_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_entry_block", - "name": "entry_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_block_ids", - "name": "block_ids", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_defined_values", - "name": "defined_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify", - "name": "verify", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compute_reachable_blocks", - "name": "compute_reachable_blocks", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_cfg", - "name": "update_cfg", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 204, - "column_start": 22, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 44, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_reachable_blocks", - "name": "mark_reachable_blocks", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stats", - "name": "stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 227, - "column_start": 17, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 17, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_function", - "name": "add_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_function", - "name": "get_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 306, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_function_mut", - "name": "get_function_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_function_names", - "name": "function_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_global", - "name": "add_global", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 321, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify", - "name": "verify", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stats", - "name": "stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 354, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 343, - "column_start": 17, - "column_end": 30, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 349, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 350, - "column_start": 58, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 351, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 352, - "column_start": 57, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 396, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 419, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_function_creation", - "name": "test_function_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_module_creation", - "name": "test_module_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 461, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_id_generation", - "name": "test_value_id_generation", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 481, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_function_stats", - "name": "test_function_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 499, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FunctionSignature", - "name": "FunctionSignature", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MirFunction", - "name": "MirFunction", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionMetadata", - "name": "FunctionMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionStats", - "name": "FunctionStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 246, - "line_end": 252, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MirModule", - "name": "MirModule", - "symbol_type": "Class", - "file_path": "", - "line_start": 256, - "line_end": 268, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ModuleMetadata", - "name": "ModuleMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 272, - "line_end": 284, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ModuleStats", - "name": "ModuleStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 359, - "line_end": 366, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instruction.rs", - "path": "./src/mir/instruction.rs", - "language": "rust", - "size_bytes": 27910, - "total_lines": 850, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.050711027Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_effects", - "name": "effects", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 444, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dst_value", - "name": "dst_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_used_values", - "name": "used_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 565, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 520, - "line_end": 520, - "column_start": 26, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 538, - "column_start": 34, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 664, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 677, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_const_instruction", - "name": "test_const_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 685, - "line_end": 695, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_binop_instruction", - "name": "test_binop_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 710, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_call_instruction", - "name": "test_call_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 713, - "line_end": 729, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ref_new_instruction", - "name": "test_ref_new_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 745, - "line_end": 753, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ref_get_instruction", - "name": "test_ref_get_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 766, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ref_set_instruction", - "name": "test_ref_set_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 769, - "line_end": 779, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_new_instruction", - "name": "test_weak_new_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 782, - "line_end": 790, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_load_instruction", - "name": "test_weak_load_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 793, - "line_end": 802, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_barrier_instructions", - "name": "test_barrier_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 805, - "line_end": 819, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_extern_call_instruction", - "name": "test_extern_call_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 822, - "line_end": 849, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirInstruction", - "name": "MirInstruction", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 314, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConstValue", - "name": "ConstValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 318, - "line_end": 325, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOp", - "name": "BinaryOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 329, - "line_end": 338, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_UnaryOp", - "name": "UnaryOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 342, - "line_end": 351, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompareOp", - "name": "CompareOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 355, - "line_end": 357, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MirType", - "name": "MirType", - "symbol_type": "Class", - "file_path": "", - "line_start": 361, - "line_end": 371, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeOpKind", - "name": "TypeOpKind", - "symbol_type": "Class", - "file_path": "", - "line_start": 570, - "line_end": 573, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WeakRefOp", - "name": "WeakRefOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 577, - "line_end": 577, - "column_start": 0, - "column_end": 32, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BarrierOp", - "name": "BarrierOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 581, - "line_end": 581, - "column_start": 0, - "column_end": 34, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "instruction_v2.rs", - "path": "./src/mir/instruction_v2.rs", - "language": "rust", - "size_bytes": 18083, - "total_lines": 543, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.055813024Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_effects", - "name": "effects", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dst_value", - "name": "dst_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_used_values", - "name": "used_values", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 386, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 332, - "column_start": 34, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 342, - "column_start": 26, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tier", - "name": "tier", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_description", - "name": "description", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 464, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instruction_count", - "name": "test_instruction_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 481, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_categories", - "name": "test_effect_categories", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ownership_operations", - "name": "test_ownership_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 542, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirInstructionV2", - "name": "MirInstructionV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConstValue", - "name": "ConstValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 205, - "line_end": 212, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BinaryOp", - "name": "BinaryOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 216, - "line_end": 225, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompareOp", - "name": "CompareOp", - "symbol_type": "Class", - "file_path": "", - "line_start": 229, - "line_end": 231, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AtomicOrdering", - "name": "AtomicOrdering", - "symbol_type": "Class", - "file_path": "", - "line_start": 235, - "line_end": 241, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "loop_builder.rs", - "path": "./src/mir/loop_builder.rs", - "language": "rust", - "size_bytes": 10387, - "total_lines": 288, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.060074334Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_loop", - "name": "build_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_prepare_loop_variables", - "name": "prepare_loop_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_seal_block", - "name": "seal_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 153, - "column_start": 32, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_block", - "name": "current_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 173, - "column_start": 24, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_block", - "name": "new_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_value", - "name": "new_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_current_block", - "name": "set_current_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_jump", - "name": "emit_jump", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_branch", - "name": "emit_branch", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_safepoint", - "name": "emit_safepoint", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_const", - "name": "emit_const", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_emit_phi_at_block_start", - "name": "emit_phi_at_block_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_predecessor", - "name": "add_predecessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_block_unsealed", - "name": "mark_block_unsealed", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_mark_block_sealed", - "name": "mark_block_sealed", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_current_variable_map", - "name": "get_current_variable_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_variable", - "name": "update_variable", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable_at_block", - "name": "get_variable_at_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_expression_with_phis", - "name": "build_expression_with_phis", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_statement", - "name": "build_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_IncompletePhi", - "name": "IncompletePhi", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_LoopBuilder", - "name": "LoopBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/mir/mod.rs", - "language": "rust", - "size_bytes": 8193, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.063981284Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_options", - "name": "with_options", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compile", - "name": "compile", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_mir", - "name": "dump_mir", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_mir_compilation", - "name": "test_basic_mir_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_mir_dump", - "name": "test_mir_dump", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_throw_compilation", - "name": "test_throw_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_loop_compilation", - "name": "test_loop_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_try_catch_compilation", - "name": "test_try_catch_compilation", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirCompileResult", - "name": "MirCompileResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MirCompiler", - "name": "MirCompiler", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "optimizer.rs", - "path": "./src/mir/optimizer.rs", - "language": "rust", - "size_bytes": 20008, - "total_lines": 518, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.068631207Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_debug", - "name": "with_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimize_module", - "name": "optimize_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eliminate_dead_code", - "name": "eliminate_dead_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eliminate_dead_code_in_function", - "name": "eliminate_dead_code_in_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 146, - "column_start": 38, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_common_subexpression_elimination", - "name": "common_subexpression_elimination", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cse_in_function", - "name": "cse_in_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_instruction_to_key", - "name": "instruction_to_key", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 47, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reorder_pure_instructions", - "name": "reorder_pure_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reorder_in_function", - "name": "reorder_in_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimize_intrinsic_calls", - "name": "optimize_intrinsic_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimize_intrinsics_in_function", - "name": "optimize_intrinsics_in_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimize_boxfield_operations", - "name": "optimize_boxfield_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_optimize_boxfield_in_function", - "name": "optimize_boxfield_in_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_map_type_name", - "name": "map_type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_opt_debug_enabled", - "name": "opt_debug_enabled", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 304, - "column_start": 0, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_opt_debug", - "name": "opt_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 0, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_type_from_value", - "name": "resolve_type_from_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 340, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 371, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_total_optimizations", - "name": "total_optimizations", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 376, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_diagnose_unlowered_type_ops", - "name": "diagnose_unlowered_type_ops", - "symbol_type": "Function", - "file_path": "", - "line_start": 395, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_optimizer_creation", - "name": "test_optimizer_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 450, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_optimization_stats", - "name": "test_optimization_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instruction_to_key", - "name": "test_instruction_to_key", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 485, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_dce_does_not_drop_typeop_used_by_print", - "name": "test_dce_does_not_drop_typeop_used_by_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 517, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 515, - "column_start": 54, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirOptimizer", - "name": "MirOptimizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OptimizationStats", - "name": "OptimizationStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 350, - "line_end": 357, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ownership_verifier.rs", - "path": "./src/mir/ownership_verifier.rs", - "language": "rust", - "size_bytes": 19151, - "total_lines": 559, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.073319124Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_module", - "name": "verify_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_function", - "name": "verify_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_process_instruction", - "name": "process_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_ownership_forest", - "name": "verify_ownership_forest", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_multiple_owners", - "name": "check_multiple_owners", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 291, - "column_start": 20, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 17, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_would_create_cycle", - "name": "would_create_cycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 324, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_strong_cycle", - "name": "find_strong_cycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dfs_cycle", - "name": "dfs_cycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 383, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 368, - "column_start": 59, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ownership_stats", - "name": "ownership_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 410, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ownership_forest_basic", - "name": "test_ownership_forest_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiple_owners_error", - "name": "test_multiple_owners_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 438, - "line_end": 461, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_strong_cycle_detection", - "name": "test_strong_cycle_detection", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_safety", - "name": "test_weak_reference_safety", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 516, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_unsafe_ref_set", - "name": "test_unsafe_ref_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 519, - "line_end": 538, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_safe_ref_set_with_release", - "name": "test_safe_ref_set_with_release", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 558, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_OwnershipError", - "name": "OwnershipError", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OwnershipVerifier", - "name": "OwnershipVerifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OwnershipStats", - "name": "OwnershipStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 399, - "line_end": 405, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ownership_verifier_simple.rs", - "path": "./src/mir/ownership_verifier_simple.rs", - "language": "rust", - "size_bytes": 12496, - "total_lines": 370, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.077772273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_module", - "name": "verify_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_function", - "name": "verify_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_process_instruction", - "name": "process_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 170, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_ownership_forest", - "name": "verify_ownership_forest", - "symbol_type": "Function", - "file_path": "", - "line_start": 173, - "line_end": 198, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_multiple_owners", - "name": "check_multiple_owners", - "symbol_type": "Function", - "file_path": "", - "line_start": 201, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 204, - "column_start": 20, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 205, - "column_start": 17, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_strong_cycle", - "name": "find_strong_cycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dfs_cycle", - "name": "dfs_cycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 257, - "column_start": 59, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ownership_stats", - "name": "ownership_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ownership_forest_basic", - "name": "test_ownership_forest_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_tracking", - "name": "test_weak_reference_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 331, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_ref_set", - "name": "test_basic_ref_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_OwnershipError", - "name": "OwnershipError", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OwnershipVerifier", - "name": "OwnershipVerifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OwnershipStats", - "name": "OwnershipStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 294, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "printer.rs", - "path": "./src/mir/printer.rs", - "language": "rust", - "size_bytes": 20697, - "total_lines": 538, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.082403313Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verbose", - "name": "verbose", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_verbose", - "name": "set_verbose", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_show_line_numbers", - "name": "set_show_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_show_effects_inline", - "name": "set_show_effects_inline", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_module", - "name": "print_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_function", - "name": "print_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_basic_block", - "name": "print_basic_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 21, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_instruction", - "name": "format_instruction", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 299, - "column_start": 25, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 25, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 341, - "column_start": 25, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 349, - "column_start": 25, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 463, - "column_start": 47, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_type", - "name": "format_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 486, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 492, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_empty_module_printing", - "name": "test_empty_module_printing", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 509, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_function_printing", - "name": "test_function_printing", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 527, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_verbose_printing", - "name": "test_verbose_printing", - "symbol_type": "Function", - "file_path": "", - "line_start": 530, - "line_end": 537, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MirPrinter", - "name": "MirPrinter", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "value_id.rs", - "path": "./src/mir/value_id.rs", - "language": "rust", - "size_bytes": 4390, - "total_lines": 197, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.086670058Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_u32", - "name": "as_u32", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_usize", - "name": "from_usize", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_usize", - "name": "to_usize", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_u32", - "name": "as_u32", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_next", - "name": "peek_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_next", - "name": "next", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reset", - "name": "reset", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_id_creation", - "name": "test_value_id_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_id_generator", - "name": "test_value_id_generator", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_local_id_creation", - "name": "test_local_id_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_local_id_generator", - "name": "test_local_id_generator", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_id_ordering", - "name": "test_value_id_ordering", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ValueId", - "name": "ValueId", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LocalId", - "name": "LocalId", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ValueIdGenerator", - "name": "ValueIdGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LocalIdGenerator", - "name": "LocalIdGenerator", - "symbol_type": "Class", - "file_path": "", - "line_start": 101, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "verification.rs", - "path": "./src/mir/verification.rs", - "language": "rust", - "size_bytes": 26821, - "total_lines": 657, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.091620054Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 85, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_module", - "name": "verify_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_function", - "name": "verify_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_weakref_and_barrier", - "name": "verify_weakref_and_barrier", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 223, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_ssa_form", - "name": "verify_ssa_form", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_dominance", - "name": "verify_dominance", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 295, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_control_flow", - "name": "verify_control_flow", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 328, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_verify_merge_uses", - "name": "verify_merge_uses", - "symbol_type": "Function", - "file_path": "", - "line_start": 332, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 357, - "line_end": 357, - "column_start": 58, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compute_reachable_blocks", - "name": "compute_reachable_blocks", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 411, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_errors", - "name": "get_errors", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_errors", - "name": "clear_errors", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compute_predecessors", - "name": "compute_predecessors", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 432, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compute_def_blocks", - "name": "compute_def_blocks", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 443, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compute_dominators", - "name": "compute_dominators", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 485, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 495, - "line_end": 530, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_valid_function_verification", - "name": "test_valid_function_verification", - "symbol_type": "Function", - "file_path": "", - "line_start": 540, - "line_end": 555, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_undefined_value_detection", - "name": "test_undefined_value_detection", - "symbol_type": "Function", - "file_path": "", - "line_start": 558, - "line_end": 562, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_merge_uses_phi_not_predecessor", - "name": "test_if_merge_uses_phi_not_predecessor", - "symbol_type": "Function", - "file_path": "", - "line_start": 565, - "line_end": 603, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_merge_use_before_phi_detected", - "name": "test_merge_use_before_phi_detected", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 656, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_VerificationError", - "name": "VerificationError", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 71, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MirVerifier", - "name": "MirVerifier", - "symbol_type": "Class", - "file_path": "", - "line_start": 74, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "operator_traits.rs", - "path": "./src/operator_traits.rs", - "language": "rust", - "size_bytes": 4924, - "total_lines": 143, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.096607181Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashAdd", - "name": "NyashAdd", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashSub", - "name": "NyashSub", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashMul", - "name": "NyashMul", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashDiv", - "name": "NyashDiv", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DynamicAdd", - "name": "DynamicAdd", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DynamicSub", - "name": "DynamicSub", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DynamicMul", - "name": "DynamicMul", - "symbol_type": "Class", - "file_path": "", - "line_start": 82, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DynamicDiv", - "name": "DynamicDiv", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OperatorError", - "name": "OperatorError", - "symbol_type": "Class", - "file_path": "", - "line_start": 103, - "line_end": 119, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "common.rs", - "path": "./src/parser/common.rs", - "language": "rust", - "size_bytes": 4093, - "total_lines": 128, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.101234491Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_current_token", - "name": "current_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_token", - "name": "peek_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_nth_token", - "name": "peek_nth_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_newlines", - "name": "skip_newlines", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_consume", - "name": "consume", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_match_token", - "name": "match_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_match_any_token", - "name": "match_any_token", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 89, - "column_start": 31, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_line_end", - "name": "is_line_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_position", - "name": "current_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_span", - "name": "current_span", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_unknown_span", - "name": "unknown_span", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ParserUtils", - "name": "ParserUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_definition.rs", - "path": "./src/parser/declarations/box_definition.rs", - "language": "rust", - "size_bytes": 27673, - "total_lines": 622, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.106672914Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_box_declaration", - "name": "parse_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_interface_box_declaration", - "name": "parse_interface_box_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 621, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "dependency_helpers.rs", - "path": "./src/parser/declarations/dependency_helpers.rs", - "language": "rust", - "size_bytes": 5535, - "total_lines": 144, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.110962630Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_extract_dependencies_from_statements", - "name": "extract_dependencies_from_statements", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 21, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_dependencies_from_ast", - "name": "extract_dependencies_from_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_circular_dependencies", - "name": "check_circular_dependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_cycle_dfs", - "name": "has_cycle_dfs", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_override_methods", - "name": "validate_override_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/parser/declarations/mod.rs", - "language": "rust", - "size_bytes": 279, - "total_lines": 12, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.114525390Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "static_box.rs", - "path": "./src/parser/declarations/static_box.rs", - "language": "rust", - "size_bytes": 11685, - "total_lines": 291, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.118071681Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_static_box", - "name": "parse_static_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 290, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "expressions.rs", - "path": "./src/parser/expressions.rs", - "language": "rust", - "size_bytes": 21428, - "total_lines": 558, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.122998971Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_expression", - "name": "parse_expression", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 20, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_or", - "name": "parse_or", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_and", - "name": "parse_and", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_equality", - "name": "parse_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_comparison", - "name": "parse_comparison", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_term", - "name": "parse_term", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_factor", - "name": "parse_factor", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_unary", - "name": "parse_unary", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_call", - "name": "parse_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 284, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_primary", - "name": "parse_primary", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_call", - "name": "parse_from_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "functions.rs", - "path": "./src/parser/items/functions.rs", - "language": "rust", - "size_bytes": 2717, - "total_lines": 79, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.128139606Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_function_declaration", - "name": "parse_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "global_vars.rs", - "path": "./src/parser/items/global_vars.rs", - "language": "rust", - "size_bytes": 1045, - "total_lines": 33, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.131257403Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_global_var", - "name": "parse_global_var", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/parser/items/mod.rs", - "language": "rust", - "size_bytes": 256, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.134325341Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "static_items.rs", - "path": "./src/parser/items/static_items.rs", - "language": "rust", - "size_bytes": 4406, - "total_lines": 117, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.137731Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_static_declaration", - "name": "parse_static_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_static_function", - "name": "parse_static_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/parser/mod.rs", - "language": "rust", - "size_bytes": 8238, - "total_lines": 231, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.142087582Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_tokens", - "name": "tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current", - "name": "current", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_mut", - "name": "current_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_string", - "name": "parse_from_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_string_with_fuel", - "name": "parse_from_string_with_fuel", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_program", - "name": "parse_program", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_assignment_or_function_call", - "name": "parse_assignment_or_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ParseError", - "name": "ParseError", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashParser", - "name": "NyashParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 104, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "statements.rs", - "path": "./src/parser/statements.rs", - "language": "rust", - "size_bytes": 17845, - "total_lines": 496, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.146189355Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_parse_statement", - "name": "parse_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_if", - "name": "parse_if", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_loop", - "name": "parse_loop", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_break", - "name": "parse_break", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_return", - "name": "parse_return", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_print", - "name": "parse_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_nowait", - "name": "parse_nowait", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_include", - "name": "parse_include", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_local", - "name": "parse_local", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_outbox", - "name": "parse_outbox", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 357, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_try_catch", - "name": "parse_try_catch", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 450, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_throw", - "name": "parse_throw", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 457, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_call_statement", - "name": "parse_from_call_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 467, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_using", - "name": "parse_using", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "runner.rs", - "path": "./src/runner.rs", - "language": "rust", - "size_bytes": 34858, - "total_lines": 961, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.152275182Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init_bid_plugins", - "name": "init_bid_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_file_mode", - "name": "execute_file_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_demo_mode", - "name": "execute_demo_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_nyash_file", - "name": "execute_nyash_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_mir_mode", - "name": "execute_mir_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 326, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_vm_mode", - "name": "execute_vm_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 386, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_box_declarations", - "name": "collect_box_declarations", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 429, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_walk", - "name": "walk", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 427, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_wasm_mode", - "name": "execute_wasm_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 496, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 480, - "column_start": 28, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_aot_mode", - "name": "execute_aot_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 539, - "line_end": 545, - "column_start": 28, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_llvm_mode", - "name": "execute_llvm_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 651, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_benchmark_mode", - "name": "execute_benchmark_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 654, - "line_end": 706, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_basic_boxes", - "name": "demo_basic_boxes", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 727, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_operations", - "name": "demo_box_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 729, - "line_end": 745, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_box_collections", - "name": "demo_box_collections", - "symbol_type": "Function", - "file_path": "", - "line_start": 747, - "line_end": 753, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_environment_system", - "name": "demo_environment_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 755, - "line_end": 758, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_tokenizer_system", - "name": "demo_tokenizer_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 760, - "line_end": 776, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_parser_system", - "name": "demo_parser_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 778, - "line_end": 880, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_demo_interpreter_system", - "name": "demo_interpreter_system", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 934, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_runner_creation", - "name": "test_runner_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 941, - "line_end": 960, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashRunner", - "name": "NyashRunner", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_registry.rs", - "path": "./src/runtime/box_registry.rs", - "language": "rust", - "size_bytes": 5162, - "total_lines": 150, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.158061904Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_builtin", - "name": "register_builtin", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_plugin_config", - "name": "apply_plugin_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_provider", - "name": "get_provider", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 64, - "column_start": 24, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_plugin_box", - "name": "create_plugin_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 21, - "column_end": 102, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 14, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_global_registry", - "name": "get_global_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_constructor", - "name": "test_string_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_builtin_registration", - "name": "test_builtin_registration", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_override", - "name": "test_plugin_override", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BoxProvider", - "name": "BoxProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BoxFactoryRegistry", - "name": "BoxFactoryRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "leak_tracker.rs", - "path": "./src/runtime/leak_tracker.rs", - "language": "rust", - "size_bytes": 1124, - "total_lines": 34, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.161586363Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 5, - "line_end": 5, - "column_start": 39, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 6, - "line_end": 6, - "column_start": 76, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 8, - "column_start": 0, - "column_end": 37, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_plugin", - "name": "register_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 13, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_plugin", - "name": "finalize_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 44, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Reporter", - "name": "Reporter", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 0, - "column_end": 16, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/runtime/mod.rs", - "language": "rust", - "size_bytes": 960, - "total_lines": 24, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.164712822Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "nyash_runtime.rs", - "path": "./src/runtime/nyash_runtime.rs", - "language": "rust", - "size_bytes": 3412, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.167924785Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_factory", - "name": "with_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 63, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_box_declarations", - "name": "with_box_declarations", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 67, - "column_end": 107, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_default_registry", - "name": "create_default_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_registry_with_groups", - "name": "create_registry_with_groups", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_builtin_groups", - "name": "with_builtin_groups", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashRuntime", - "name": "NyashRuntime", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashRuntimeBuilder", - "name": "NyashRuntimeBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_box_legacy.rs", - "path": "./src/runtime/plugin_box_legacy.rs", - "language": "rust", - "size_bytes": 4785, - "total_lines": 159, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.171689439Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_plugin_name", - "name": "plugin_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle", - "name": "handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_plugin_method", - "name": "call_plugin_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone", - "name": "clone", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_box_creation", - "name": "test_plugin_box_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_box_equality", - "name": "test_plugin_box_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 158, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginBox", - "name": "PluginBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_config.rs", - "path": "./src/runtime/plugin_config.rs", - "language": "rust", - "size_bytes": 3208, - "total_lines": 112, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.175131870Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_load_from_file", - "name": "load_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 21, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse", - "name": "parse", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_simple_config", - "name": "test_parse_simple_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_empty_config", - "name": "test_parse_empty_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_parse_with_comments", - "name": "test_parse_with_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PluginConfig", - "name": "PluginConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 15, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_loader_legacy.rs", - "path": "./src/runtime/plugin_loader_legacy.rs", - "language": "rust", - "size_bytes": 11299, - "total_lines": 326, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.178876515Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_host_alloc", - "name": "host_alloc", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_free", - "name": "host_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_wake", - "name": "host_wake", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 76, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_host_log", - "name": "host_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 90, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_from_config", - "name": "load_from_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_multi_box_plugin", - "name": "load_multi_box_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 215, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 29, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 29, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 29, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 170, - "column_start": 33, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_library_for_box", - "name": "get_library_for_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_plugin_method", - "name": "invoke_plugin_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 28, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 238, - "column_start": 28, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 242, - "column_start": 28, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_call_plugin_method", - "name": "call_plugin_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 270, - "column_start": 25, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 277, - "column_start": 25, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 321, - "line_end": 321, - "column_start": 14, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_global_loader_v2", - "name": "get_global_loader_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 326, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashHostVtable", - "name": "NyashHostVtable", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashMethodInfo", - "name": "NyashMethodInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MultiBoxPluginLibrary", - "name": "MultiBoxPluginLibrary", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginLoaderV2", - "name": "PluginLoaderV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_loader_v2.rs", - "path": "./src/runtime/plugin_loader_v2.rs", - "language": "rust", - "size_bytes": 41376, - "total_lines": 906, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.184944039Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_dbg_on", - "name": "dbg_on", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 4, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 68, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_now", - "name": "finalize_now", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 93, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_identity", - "name": "is_identity", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 4, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_instance_id", - "name": "instance_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_finalize_now", - "name": "finalize_now", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 4, - "column_end": 60, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_finalized", - "name": "is_finalized", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 196, - "column_start": 4, - "column_end": 105, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_box_by_type_id", - "name": "find_box_by_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 227, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_config", - "name": "load_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 250, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 240, - "column_start": 17, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 241, - "column_start": 28, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 248, - "column_start": 21, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_all_plugins", - "name": "load_all_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 277, - "column_start": 8, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 53, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 264, - "column_start": 69, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 265, - "column_start": 76, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_singleton_handle", - "name": "ensure_singleton_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 286, - "column_start": 53, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 287, - "column_start": 69, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 76, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 303, - "column_start": 55, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extern_call", - "name": "extern_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_method_id_from_file", - "name": "resolve_method_id_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 355, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 345, - "line_end": 345, - "column_start": 57, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 346, - "column_start": 73, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 347, - "column_start": 80, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 349, - "line_end": 353, - "column_start": 70, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_instance_method", - "name": "invoke_instance_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 610, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 57, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 373, - "line_end": 373, - "column_start": 73, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 374, - "column_start": 80, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 377, - "column_start": 71, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 386, - "line_end": 386, - "column_start": 79, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 500, - "column_start": 78, - "column_end": 102, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 563, - "line_end": 563, - "column_start": 83, - "column_end": 98, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_plugin", - "name": "load_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 673, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 625, - "line_end": 628, - "column_start": 25, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 635, - "line_end": 638, - "column_start": 29, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 645, - "column_start": 21, - "column_end": 27, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 676, - "line_end": 797, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 689, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 692, - "line_end": 692, - "column_start": 53, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 713, - "line_end": 716, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 728, - "line_end": 728, - "column_start": 69, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shutdown_singletons", - "name": "shutdown_singletons", - "symbol_type": "Function", - "file_path": "", - "line_start": 800, - "line_end": 805, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 810, - "line_end": 810, - "column_start": 18, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_global_loader_v2", - "name": "get_global_loader_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 813, - "line_end": 815, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init_global_loader_v2", - "name": "init_global_loader_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 818, - "line_end": 828, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shutdown_plugins_v2", - "name": "shutdown_plugins_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 836, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 864, - "line_end": 866, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_config", - "name": "load_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 869, - "column_start": 8, - "column_end": 75, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_all_plugins", - "name": "load_all_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 870, - "line_end": 870, - "column_start": 8, - "column_end": 66, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 871, - "line_end": 873, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extern_call", - "name": "extern_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 875, - "line_end": 882, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_invoke_instance_method", - "name": "invoke_instance_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 884, - "line_end": 892, - "column_start": 8, - "column_end": 9, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 896, - "line_end": 896, - "column_start": 18, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_global_loader_v2", - "name": "get_global_loader_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 898, - "line_end": 898, - "column_start": 4, - "column_end": 93, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_init_global_loader_v2", - "name": "init_global_loader_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 899, - "line_end": 899, - "column_start": 4, - "column_end": 80, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_shutdown_plugins_v2", - "name": "shutdown_plugins_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 900, - "line_end": 900, - "column_start": 4, - "column_end": 60, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LoadedPluginV2", - "name": "LoadedPluginV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 35, - "column_start": 4, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginHandleInner", - "name": "PluginHandleInner", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginBoxV2", - "name": "PluginBoxV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginLoaderV2", - "name": "PluginLoaderV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 200, - "line_end": 211, - "column_start": 4, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginBoxV2", - "name": "PluginBoxV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 848, - "line_end": 851, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginHandleInner", - "name": "PluginHandleInner", - "symbol_type": "Class", - "file_path": "", - "line_start": 854, - "line_end": 858, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PluginLoaderV2", - "name": "PluginLoaderV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 860, - "line_end": 862, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tests.rs", - "path": "./src/runtime/tests.rs", - "language": "rust", - "size_bytes": 4491, - "total_lines": 110, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.190315363Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_dummy_filebox_constructor", - "name": "dummy_filebox_constructor", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 19, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_plugin_config_parsing", - "name": "test_plugin_config_parsing", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 32, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_registry_builtin", - "name": "test_box_registry_builtin", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_registry_plugin_override", - "name": "test_box_registry_plugin_override", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_transparent_box_switching", - "name": "test_transparent_box_switching", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiple_plugin_types", - "name": "test_multiple_plugin_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "unified_registry.rs", - "path": "./src/runtime/unified_registry.rs", - "language": "rust", - "size_bytes": 1838, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.193711538Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_init_global_unified_registry", - "name": "init_global_unified_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 33, - "column_start": 32, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_global_unified_registry", - "name": "get_global_unified_registry", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_user_defined_factory", - "name": "register_user_defined_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "scope_tracker.rs", - "path": "./src/scope_tracker.rs", - "language": "rust", - "size_bytes": 2625, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.197283612Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_push_scope", - "name": "push_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_pop_scope", - "name": "pop_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_box", - "name": "register_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ScopeTracker", - "name": "ScopeTracker", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/stdlib/mod.rs", - "language": "rust", - "size_bytes": 7667, - "total_lines": 225, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.201663532Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_nyashstd", - "name": "register_nyashstd", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_string_box", - "name": "create_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 95, - "column_start": 56, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 114, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_integer_box", - "name": "create_integer_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 146, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 143, - "column_start": 57, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_bool_box", - "name": "create_bool_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 149, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 172, - "column_start": 54, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_array_box", - "name": "create_array_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 194, - "column_start": 55, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_console_box", - "name": "create_console_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 224, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 221, - "column_start": 54, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BuiltinStdlib", - "name": "BuiltinStdlib", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BuiltinNamespace", - "name": "BuiltinNamespace", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BuiltinStaticBox", - "name": "BuiltinStaticBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "box_tests.rs", - "path": "./src/tests/box_tests.rs", - "language": "rust", - "size_bytes": 4961, - "total_lines": 143, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.206614792Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_array_box_nyash_trait", - "name": "test_array_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_buffer_box_nyash_trait", - "name": "test_buffer_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_json_box_nyash_trait", - "name": "test_json_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_future_box_nyash_trait", - "name": "test_future_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_stream_box_nyash_trait", - "name": "test_stream_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_result_box_nyash_trait", - "name": "test_result_box_nyash_trait", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_id_uniqueness", - "name": "test_box_id_uniqueness", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_vm_poc.rs", - "path": "./src/tests/mir_vm_poc.rs", - "language": "rust", - "size_bytes": 6748, - "total_lines": 155, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.210357255Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_make_main", - "name": "make_main", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 17, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_typeop_check_and_cast", - "name": "vm_exec_typeop_check_and_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_typeop_cast_int_float", - "name": "vm_exec_typeop_cast_int_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_typeop_cast_float_int", - "name": "vm_exec_typeop_cast_float_int", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 81, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_typeop_cast_invalid_should_error", - "name": "vm_exec_typeop_cast_invalid_should_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_legacy_typecheck_cast", - "name": "vm_exec_legacy_typecheck_cast", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_exec_unified_weakref_and_barrier", - "name": "vm_exec_unified_weakref_and_barrier", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/tests/mod.rs", - "language": "rust", - "size_bytes": 39, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.214243079Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tokenizer.rs", - "path": "./src/tokenizer.rs", - "language": "rust", - "size_bytes": 21600, - "total_lines": 641, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.218904698Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize", - "name": "tokenize", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tokenize_next", - "name": "tokenize_next", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_string", - "name": "read_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_numeric_literal", - "name": "read_numeric_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 372, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 351, - "column_start": 77, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 365, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 370, - "column_start": 25, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_keyword_or_identifier", - "name": "read_keyword_or_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 375, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_line_comment", - "name": "skip_line_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 440, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_skip_whitespace", - "name": "skip_whitespace", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 451, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_current_char", - "name": "current_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 454, - "line_end": 456, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_peek_char", - "name": "peek_char", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 461, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_advance", - "name": "advance", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 474, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_at_end", - "name": "is_at_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 477, - "line_end": 479, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_simple_tokens", - "name": "test_simple_tokens", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 501, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_literal", - "name": "test_string_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 504, - "line_end": 513, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_number_literal", - "name": "test_number_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 533, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_identifier", - "name": "test_identifier", - "symbol_type": "Function", - "file_path": "", - "line_start": 536, - "line_end": 553, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_operators", - "name": "test_operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 567, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_code", - "name": "test_complex_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 570, - "line_end": 594, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 588, - "line_end": 588, - "column_start": 52, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_line_numbers", - "name": "test_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 597, - "line_end": 607, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 603, - "line_end": 603, - "column_start": 60, - "column_end": 107, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_comments", - "name": "test_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 610, - "line_end": 624, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 20, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 621, - "line_end": 621, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling", - "name": "test_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 640, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TokenType", - "name": "TokenType", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Token", - "name": "Token", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TokenizeError", - "name": "TokenizeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 105, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashTokenizer", - "name": "NyashTokenizer", - "symbol_type": "Class", - "file_path": "", - "line_start": 120, - "line_end": 125, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "inprocess.rs", - "path": "./src/transport/inprocess.rs", - "language": "rust", - "size_bytes": 4010, - "total_lines": 114, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.224218124Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_handler", - "name": "add_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_node_id", - "name": "node_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_send", - "name": "send", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_on_receive", - "name": "on_receive", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_reachable", - "name": "is_reachable", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_transport_type", - "name": "transport_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_drop", - "name": "drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_InProcessTransport", - "name": "InProcessTransport", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./src/transport/mod.rs", - "language": "rust", - "size_bytes": 1495, - "total_lines": 54, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.227801115Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_IntentEnvelope", - "name": "IntentEnvelope", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SendOpts", - "name": "SendOpts", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TransportError", - "name": "TransportError", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Transport", - "name": "Transport", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "type_box.rs", - "path": "./src/type_box.rs", - "language": "rust", - "size_bytes": 12896, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.232208272Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_types", - "name": "with_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_builtin", - "name": "builtin", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 99, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_field", - "name": "add_field", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_method", - "name": "add_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_parent", - "name": "set_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_type_parameter", - "name": "add_type_parameter", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 119, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_concrete_type", - "name": "set_concrete_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_field_type", - "name": "get_field_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_method_signature", - "name": "get_method_signature", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible_with", - "name": "is_compatible_with", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_generic", - "name": "is_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 176, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_concrete_generic", - "name": "is_concrete_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 179, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_full_name", - "name": "full_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 196, - "column_start": 21, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 29, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 40, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_void_type", - "name": "void_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 208, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_string_type", - "name": "string_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_integer_type", - "name": "integer_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_bool_type", - "name": "bool_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_array_type", - "name": "array_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method_box_type", - "name": "method_box_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 260, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 266, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_builtin_types", - "name": "register_builtin_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_register_type", - "name": "register_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 343, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_type", - "name": "get_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_compatible", - "name": "is_compatible", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 361, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_all_type_names", - "name": "get_all_type_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 366, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_instantiate_generic", - "name": "instantiate_generic", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 402, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 371, - "line_end": 371, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 392, - "line_end": 392, - "column_start": 28, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 416, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_field", - "name": "field", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_method", - "name": "method", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent", - "name": "parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_param", - "name": "type_param", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 440, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 445, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MethodSignature", - "name": "MethodSignature", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBox", - "name": "TypeBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 77, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeRegistry", - "name": "TypeRegistry", - "symbol_type": "Class", - "file_path": "", - "line_start": 293, - "line_end": 303, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeBoxBuilder", - "name": "TypeBoxBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "value.rs", - "path": "./src/value.rs", - "language": "rust", - "size_bytes": 20620, - "total_lines": 575, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.237048002Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new_integer", - "name": "new_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_float", - "name": "new_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_bool", - "name": "new_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 51, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_string", - "name": "new_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_array", - "name": "new_array", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_map", - "name": "new_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_null", - "name": "new_null", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_void", - "name": "new_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 29, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 93, - "column_start": 29, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_integer", - "name": "to_integer", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 29, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_float", - "name": "to_float", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 29, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_bool", - "name": "to_bool", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_numeric", - "name": "is_numeric", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_falsy", - "name": "is_falsy", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_upgrade_weak", - "name": "upgrade_weak", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 202, - "column_start": 39, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_downgrade_to_weak", - "name": "downgrade_to_weak", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_weak_reference", - "name": "is_weak_reference", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 222, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_weak_alive", - "name": "is_weak_alive", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_eq", - "name": "eq", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_box", - "name": "from_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_box", - "name": "to_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 394, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_object", - "name": "create_object", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 440, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_creation", - "name": "test_basic_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 458, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_type_conversion", - "name": "test_type_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_cross_type_equality", - "name": "test_cross_type_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 480, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_object_creation", - "name": "test_object_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 483, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_type_names", - "name": "test_type_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_basic", - "name": "test_weak_reference_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 525, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_drop", - "name": "test_weak_reference_drop", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 542, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_equality", - "name": "test_weak_reference_equality", - "symbol_type": "Function", - "file_path": "", - "line_start": 545, - "line_end": 558, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_string_representation", - "name": "test_weak_reference_string_representation", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 574, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashValue", - "name": "NyashValue", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm_test.rs", - "path": "./src/wasm_test.rs", - "language": "rust", - "size_bytes": 1640, - "total_lines": 49, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:00:50.241604064Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_direct_canvas_draw", - "name": "test_direct_canvas_draw", - "symbol_type": "Function", - "file_path": "", - "line_start": 7, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm_poc2_box_operations.rs", - "path": "./tests/archive/wasm_poc2_box_operations.rs", - "language": "rust", - "size_bytes": 10449, - "total_lines": 334, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.225300770Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_wasm_poc2_refnew_basic", - "name": "test_wasm_poc2_refnew_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc2_refget_refset", - "name": "test_wasm_poc2_refget_refset", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc2_complete_box_workflow", - "name": "test_wasm_poc2_complete_box_workflow", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_refnew_mir_module", - "name": "build_refnew_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 157, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_refget_refset_mir_module", - "name": "build_refget_refset_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 227, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_complete_workflow_mir_module", - "name": "build_complete_workflow_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 334, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "array_state_sharing_test.rs", - "path": "./tests/array_state_sharing_test.rs", - "language": "rust", - "size_bytes": 2695, - "total_lines": 73, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.230040542Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_arraybox_state_sharing_bug_fix", - "name": "test_arraybox_state_sharing_bug_fix", - "symbol_type": "Function", - "file_path": "", - "line_start": 9, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_share_box_vs_clone_box_semantics", - "name": "test_share_box_vs_clone_box_semantics", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiple_operations_state_preservation", - "name": "test_multiple_operations_state_preservation", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_counterbox.rs", - "path": "./tests/e2e_plugin_counterbox.rs", - "language": "rust", - "size_bytes": 2914, - "total_lines": 100, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.265828092Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_counter_basic_inc_get", - "name": "e2e_counter_basic_inc_get", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_counter_assignment_shares_handle", - "name": "e2e_counter_assignment_shares_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 74, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_counter_mapbox_shares_handle", - "name": "e2e_counter_mapbox_shares_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_echo.rs", - "path": "./tests/e2e_plugin_echo.rs", - "language": "rust", - "size_bytes": 4891, - "total_lines": 116, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.269816670Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 15, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 4, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 34, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 16, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 4, - "column_end": 118, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 45, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 54, - "column_start": 4, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 55, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 62, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 42, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 68, - "column_start": 86, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 73, - "column_start": 77, - "column_end": 152, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 74, - "column_start": 77, - "column_end": 152, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 81, - "column_start": 4, - "column_end": 68, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_interpreter_with_test_plugin", - "name": "build_interpreter_with_test_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_create_echo_box_and_return_string", - "name": "e2e_create_echo_box_and_return_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_create_adder_box_and_return_sum", - "name": "e2e_create_adder_box_and_return_sum", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_EchoBox", - "name": "EchoBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 0, - "column_end": 45, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_AdderBox", - "name": "AdderBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 0, - "column_end": 43, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_TestPluginFactory", - "name": "TestPluginFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_filebox.rs", - "path": "./tests/e2e_plugin_filebox.rs", - "language": "rust", - "size_bytes": 6047, - "total_lines": 205, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.273989295Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_interpreter_plugin_filebox_close_void", - "name": "e2e_interpreter_plugin_filebox_close_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_interpreter_plugin_filebox_delegation", - "name": "e2e_interpreter_plugin_filebox_delegation", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 102, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_plugin_filebox_close_void", - "name": "e2e_vm_plugin_filebox_close_void", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_plugin_filebox_open_rw", - "name": "e2e_vm_plugin_filebox_open_rw", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_plugin_filebox_copy_from_handle", - "name": "e2e_vm_plugin_filebox_copy_from_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 173, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_interpreter_plugin_filebox_copy_from_handle", - "name": "e2e_interpreter_plugin_filebox_copy_from_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 205, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_interop.rs", - "path": "./tests/e2e_plugin_interop.rs", - "language": "rust", - "size_bytes": 2627, - "total_lines": 66, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.278217756Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 15, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 4, - "column_end": 117, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 42, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 86, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 4, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new_interpreter_with_factory", - "name": "new_interpreter_with_factory", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_interop_mapbox_store_plugin_box", - "name": "e2e_interop_mapbox_store_plugin_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_EchoBox", - "name": "EchoBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 10, - "column_start": 0, - "column_end": 45, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_TestPluginFactory", - "name": "TestPluginFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_net.rs", - "path": "./tests/e2e_plugin_net.rs", - "language": "rust", - "size_bytes": 10361, - "total_lines": 354, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.282294201Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_stub_end_to_end", - "name": "e2e_http_stub_end_to_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_get_basic", - "name": "e2e_vm_http_get_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_status_404", - "name": "e2e_vm_http_status_404", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 120, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_status_500", - "name": "e2e_vm_http_status_500", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_post_and_headers", - "name": "e2e_vm_http_post_and_headers", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_server_restart", - "name": "e2e_http_server_restart", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_server_shutdown_and_restart", - "name": "e2e_http_server_shutdown_and_restart", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 284, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_post_and_headers", - "name": "e2e_http_post_and_headers", - "symbol_type": "Function", - "file_path": "", - "line_start": 287, - "line_end": 322, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_multiple_requests_order", - "name": "e2e_http_multiple_requests_order", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 354, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_net_additional.rs", - "path": "./tests/e2e_plugin_net_additional.rs", - "language": "rust", - "size_bytes": 5069, - "total_lines": 169, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.286285330Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_two_servers_parallel", - "name": "e2e_http_two_servers_parallel", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_http_long_body_and_headers", - "name": "e2e_http_long_body_and_headers", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_client_error_result", - "name": "e2e_vm_http_client_error_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_vm_http_empty_body", - "name": "e2e_vm_http_empty_body", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_singleton.rs", - "path": "./tests/e2e_plugin_singleton.rs", - "language": "rust", - "size_bytes": 1422, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.290008758Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_counterbox_singleton_shared_across_news", - "name": "e2e_counterbox_singleton_shared_across_news", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_singleton_shutdown.rs", - "path": "./tests/e2e_plugin_singleton_shutdown.rs", - "language": "rust", - "size_bytes": 1859, - "total_lines": 51, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.293560647Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_singleton_shutdown_and_recreate", - "name": "e2e_singleton_shutdown_and_recreate", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 50, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_plugin_socket.rs", - "path": "./tests/e2e_plugin_socket.rs", - "language": "rust", - "size_bytes": 2411, - "total_lines": 80, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.297085172Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_socket_ping_pong", - "name": "e2e_socket_ping_pong", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_socket_accept_timeout_and_recv_timeout", - "name": "e2e_socket_accept_timeout_and_recv_timeout", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "e2e_reserved_name_guard.rs", - "path": "./tests/e2e_reserved_name_guard.rs", - "language": "rust", - "size_bytes": 2722, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.300590320Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 12, - "column_start": 18, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 18, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 4, - "column_end": 122, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 4, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 4, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 40, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 46, - "column_start": 4, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_e2e_reserved_name_guard_rejects_non_builtin_registration", - "name": "e2e_reserved_name_guard_rejects_non_builtin_registration", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_BadFactory", - "name": "BadFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 18, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_FakeStringBox", - "name": "FakeStringBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 0, - "column_end": 53, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "integration_tests.rs", - "path": "./tests/integration_tests.rs", - "language": "rust", - "size_bytes": 9764, - "total_lines": 381, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.304673867Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_execute_nyash_code", - "name": "execute_nyash_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_variable_value", - "name": "get_variable_value", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 45, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_arithmetic", - "name": "test_basic_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_string_operations", - "name": "test_string_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_boolean_logic", - "name": "test_boolean_logic", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_comparison_operators", - "name": "test_comparison_operators", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 100, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_if_else_statements", - "name": "test_if_else_statements", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 115, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_loop_with_break", - "name": "test_loop_with_break", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_function_declaration_and_call", - "name": "test_function_declaration_and_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_box_instance_creation", - "name": "test_box_instance_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_this_binding_in_methods", - "name": "test_this_binding_in_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_method_chaining_concept", - "name": "test_method_chaining_concept", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_multiple_instances", - "name": "test_multiple_instances", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_global_variables", - "name": "test_global_variables", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 275, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complex_expression_evaluation", - "name": "test_complex_expression_evaluation", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_nested_method_calls", - "name": "test_nested_method_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_all_numeric_operations", - "name": "test_all_numeric_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_the_debug_this_problem", - "name": "test_the_debug_this_problem", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_phase6_lowering_ref_ops.rs", - "path": "./tests/mir_phase6_lowering_ref_ops.rs", - "language": "rust", - "size_bytes": 7115, - "total_lines": 214, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.308521283Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_mir_phase6_lowering_ref_ops", - "name": "test_mir_phase6_lowering_ref_ops", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_mir_verification_phase6_ref_ops", - "name": "test_mir_verification_phase6_ref_ops", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 214, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_phase6_vm_ref_ops.rs", - "path": "./tests/mir_phase6_vm_ref_ops.rs", - "language": "rust", - "size_bytes": 5903, - "total_lines": 193, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.312212911Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_mir_phase6_vm_ref_ops", - "name": "test_mir_phase6_vm_ref_ops", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 134, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_vm_ref_ops_basic_field_storage", - "name": "test_vm_ref_ops_basic_field_storage", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 144, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_barrier_no_op", - "name": "test_barrier_no_op", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 193, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_phase7_async_ops.rs", - "path": "./tests/mir_phase7_async_ops.rs", - "language": "rust", - "size_bytes": 12222, - "total_lines": 393, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.316129070Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_mir_phase7_basic_nowait_await", - "name": "test_mir_phase7_basic_nowait_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 138, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 109, - "column_start": 18, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 115, - "column_start": 49, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 121, - "column_start": 44, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_mir_phase7_multiple_nowait_await", - "name": "test_mir_phase7_multiple_nowait_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_mir_phase7_nested_await", - "name": "test_mir_phase7_nested_await", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 393, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mir_phase8_5_hierarchical_25_instructions.rs", - "path": "./tests/mir_phase8_5_hierarchical_25_instructions.rs", - "language": "rust", - "size_bytes": 21884, - "total_lines": 479, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.320931220Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_mir_instruction_count", - "name": "test_mir_instruction_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_categories", - "name": "test_effect_categories", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_optimization_safety", - "name": "test_optimization_safety", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 188, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ownership_forest_verification", - "name": "test_ownership_forest_verification", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 217, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ownership_violations", - "name": "test_ownership_violations", - "symbol_type": "Function", - "file_path": "", - "line_start": 221, - "line_end": 242, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_weak_reference_liveness", - "name": "test_weak_reference_liveness", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 274, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_bus_operations", - "name": "test_bus_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 301, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_implementation_assistance", - "name": "test_implementation_assistance", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 331, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_instruction_descriptions", - "name": "test_instruction_descriptions", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 351, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_value_id_tracking", - "name": "test_value_id_tracking", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 379, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_complete_specification_compliance", - "name": "test_complete_specification_compliance", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 445, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 53, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 427, - "column_start": 53, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 428, - "column_start": 53, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_effect_calculation_performance", - "name": "test_effect_calculation_performance", - "symbol_type": "Function", - "file_path": "", - "line_start": 449, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "plugin_contract_net_ids.rs", - "path": "./tests/plugin_contract_net_ids.rs", - "language": "rust", - "size_bytes": 1584, - "total_lines": 39, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.337446315Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_try_init_plugins", - "name": "try_init_plugins", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_plugin_contract_http_request_ids_sanity", - "name": "plugin_contract_http_request_ids_sanity", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "vm_e2e.rs", - "path": "./tests/vm_e2e.rs", - "language": "rust", - "size_bytes": 3991, - "total_lines": 86, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.340720357Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 16, - "column_start": 16, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_id", - "name": "box_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 4, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parent_type_id", - "name": "parent_type_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 4, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt_box", - "name": "fmt_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 21, - "column_start": 4, - "column_end": 118, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any", - "name": "as_any", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 22, - "column_start": 4, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_any_mut", - "name": "as_any_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 4, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string_box", - "name": "to_string_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 27, - "column_start": 4, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_equals", - "name": "equals", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 30, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_name", - "name": "type_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 31, - "column_start": 4, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clone_box", - "name": "clone_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_share_box", - "name": "share_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 33, - "column_start": 4, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 25, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_box", - "name": "create_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 43, - "column_start": 77, - "column_end": 152, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 77, - "column_end": 152, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_box_types", - "name": "box_types", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 4, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_vm_e2e_adder_box", - "name": "vm_e2e_adder_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 85, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AdderBox", - "name": "AdderBox", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 0, - "column_end": 43, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_TestPluginFactory", - "name": "TestPluginFactory", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 0, - "column_end": 25, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm_poc1_basic_operations.rs", - "path": "./tests/wasm_poc1_basic_operations.rs", - "language": "rust", - "size_bytes": 7692, - "total_lines": 247, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.344304110Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_wasm_poc1_basic_arithmetic", - "name": "test_wasm_poc1_basic_arithmetic", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc1_multiplication", - "name": "test_wasm_poc1_multiplication", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc1_subtraction", - "name": "test_wasm_poc1_subtraction", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 91, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_arithmetic_mir_module", - "name": "build_arithmetic_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_multiplication_mir_module", - "name": "build_multiplication_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 201, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_subtraction_mir_module", - "name": "build_subtraction_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 247, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm_poc2_box_operations.rs", - "path": "./tests/wasm_poc2_box_operations.rs", - "language": "rust", - "size_bytes": 10484, - "total_lines": 335, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.348074965Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_wasm_poc2_refnew_basic", - "name": "test_wasm_poc2_refnew_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 62, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc2_refget_refset", - "name": "test_wasm_poc2_refget_refset", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_poc2_complete_box_workflow", - "name": "test_wasm_poc2_complete_box_workflow", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 109, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_refnew_mir_module", - "name": "build_refnew_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_refget_refset_mir_module", - "name": "build_refget_refset_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 161, - "line_end": 228, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_complete_workflow_mir_module", - "name": "build_complete_workflow_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 335, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "wasm_string_constants.rs", - "path": "./tests/wasm_string_constants.rs", - "language": "rust", - "size_bytes": 6001, - "total_lines": 165, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.351715005Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_wasm_string_constant_basic", - "name": "test_wasm_string_constant_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wasm_string_constant_multiple", - "name": "test_wasm_string_constant_multiple", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_string_const_mir_module", - "name": "build_string_const_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_multiple_string_const_mir_module", - "name": "build_multiple_string_const_mir_module", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 165, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_cpp.cpp", - "path": "./tools/nekocode-rust/examples/test_cpp.cpp", - "language": "cpp", - "size_bytes": 769, - "total_lines": 44, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.479339376Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "cpp_func_Vector", - "name": "Vector", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 13, - "column_start": 4, - "column_end": 15, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_1", - "name": "function_1", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 4, - "column_end": 24, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_2", - "name": "function_2", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_function_3", - "name": "function_3", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_fibonacci", - "name": "fibonacci", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "cpp_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "cpp_class_Vector", - "name": "Vector", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "cpp", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mcp_server_nekocode.py", - "path": "./tools/nekocode-rust/mcp-nekocode-server/mcp_server_nekocode.py", - "language": "python", - "size_bytes": 33356, - "total_lines": 805, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.485452100Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 26, - "column_start": 4, - "column_end": 52, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_add_tool", - "name": "add_tool", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 10, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "handler", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 52, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__init_config", - "name": "_init_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 63, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__save_current_session", - "name": "_save_current_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 74, - "column_start": 4, - "column_end": 44, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__find_nekocode_binary", - "name": "_find_nekocode_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 107, - "column_start": 4, - "column_end": 60, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_setup_tools", - "name": "setup_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 350, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_nekocode", - "name": "_run_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 371, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__normalize_path", - "name": "_normalize_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 382, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__count_project_files", - "name": "_count_project_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 384, - "line_end": 401, - "column_start": 4, - "column_end": 74, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__truncate_large_output", - "name": "_truncate_large_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 446, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_analyze_project", - "name": "analyze_project", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 492, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_analyze_start", - "name": "analyze_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 540, - "column_start": 4, - "column_end": 50, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__get_session_id", - "name": "_get_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 542, - "line_end": 550, - "column_start": 4, - "column_end": 134, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_stats", - "name": "show_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 552, - "line_end": 560, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_detect_deadcode", - "name": "detect_deadcode", - "symbol_type": "Function", - "file_path": "", - "line_start": 562, - "line_end": 580, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_ast_stats", - "name": "show_ast_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 582, - "line_end": 590, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_ast_query", - "name": "ast_query", - "symbol_type": "Function", - "file_path": "", - "line_start": 592, - "line_end": 600, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_ast_dump", - "name": "ast_dump", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 611, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 613, - "line_end": 637, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_session_stats", - "name": "session_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 655, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_session_complexity", - "name": "session_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 657, - "line_end": 662, - "column_start": 4, - "column_end": 82, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_detect_include_cycles", - "name": "detect_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 664, - "line_end": 678, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_show_include_graph", - "name": "show_include_graph", - "symbol_type": "Function", - "file_path": "", - "line_start": 680, - "line_end": 694, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_optimize_includes", - "name": "optimize_includes", - "symbol_type": "Function", - "file_path": "", - "line_start": 696, - "line_end": 701, - "column_start": 4, - "column_end": 88, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_find_files", - "name": "find_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 708, - "column_start": 4, - "column_end": 84, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_memory_command", - "name": "memory_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 712, - "line_end": 767, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_list_supported_languages", - "name": "list_supported_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 769, - "line_end": 781, - "column_start": 4, - "column_end": 21, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 783, - "line_end": 793, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_MCPServer", - "name": "MCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 38, - "column_start": 0, - "column_end": 56, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "add_tool", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "python_class_NekoCodeMCPServer", - "name": "NekoCodeMCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 793, - "column_start": 0, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_init_config", - "_save_current_session", - "_find_nekocode_binary", - "setup_tools", - "_run_nekocode", - "_normalize_path", - "_count_project_files", - "_truncate_large_output", - "analyze_project", - "analyze_start", - "_get_session_id", - "show_stats", - "detect_deadcode", - "show_ast_stats", - "ast_query", - "ast_dump", - "create_session", - "session_stats", - "session_complexity", - "detect_include_cycles", - "show_include_graph", - "optimize_includes", - "find_files", - "memory_command", - "list_supported_languages", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "asyncio", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 12 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 13 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 14 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 15 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 16 - }, - { - "module": "pathlib Path", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 17 - }, - { - "module": "typing Dict, List, Optional, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 18 - }, - { - "module": "logging", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 19 - }, - { - "module": "pathlib Path", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 387 - }, - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 505 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mcp_server_real.py", - "path": "./tools/nekocode-rust/mcp-nekocode-server/mcp_server_real.py", - "language": "python", - "size_bytes": 127902, - "total_lines": 2684, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.499011133Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 62, - "column_start": 4, - "column_end": 36, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__read_cli_session", - "name": "_read_cli_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 73, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__resolve_session", - "name": "_resolve_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 85, - "column_start": 4, - "column_end": 18, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__get_session_path", - "name": "_get_session_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 99, - "column_start": 4, - "column_end": 19, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__refresh_file_l1", - "name": "_refresh_file_l1", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 105, - "column_start": 4, - "column_end": 51, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__find_nekocode_binary", - "name": "_find_nekocode_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 169, - "column_start": 4, - "column_end": 65, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__find_nekorefactor_binary", - "name": "_find_nekorefactor_binary", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 218, - "column_start": 4, - "column_end": 69, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__load_config", - "name": "_load_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 260, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__define_tools", - "name": "_define_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 880, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__extract_summary", - "name": "_extract_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 882, - "line_end": 946, - "column_start": 4, - "column_end": 114, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_nekocode", - "name": "_run_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 948, - "line_end": 991, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__run_nekorefactor", - "name": "_run_nekorefactor", - "symbol_type": "Function", - "file_path": "", - "line_start": 993, - "line_end": 1015, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_enforce_refactor_mode", - "name": "_tool_enforce_refactor_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1021, - "line_end": 1042, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_disable_refactor_mode", - "name": "_tool_disable_refactor_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1044, - "line_end": 1062, - "column_start": 4, - "column_end": 89, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_setup_precommit_guard", - "name": "_tool_setup_precommit_guard", - "symbol_type": "Function", - "file_path": "", - "line_start": 1064, - "line_end": 1101, - "column_start": 4, - "column_end": 109, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_initialize", - "name": "handle_initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 1105, - "line_end": 1118, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_tools_list", - "name": "handle_tools_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 1120, - "line_end": 1161, - "column_start": 4, - "column_end": 31, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_resources_list", - "name": "handle_resources_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 1163, - "line_end": 1176, - "column_start": 4, - "column_end": 39, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_resources_read", - "name": "handle_resources_read", - "symbol_type": "Function", - "file_path": "", - "line_start": 1178, - "line_end": 1196, - "column_start": 4, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_tools_call", - "name": "handle_tools_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 1198, - "line_end": 1310, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_nekocode", - "name": "_tool_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 1316, - "line_end": 1353, - "column_start": 4, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_normalize_path", - "name": "normalize_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 1355, - "line_end": 1367, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_get_or_create_session", - "name": "get_or_create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 1369, - "line_end": 1415, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_smart_analyze", - "name": "smart_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 1417, - "line_end": 1457, - "column_start": 4, - "column_end": 94, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_count_files", - "name": "count_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 1459, - "line_end": 1483, - "column_start": 4, - "column_end": 20, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_format_analysis_result", - "name": "format_analysis_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 1485, - "line_end": 1553, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_analyze", - "name": "_tool_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 1555, - "line_end": 1595, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_session_create", - "name": "_tool_session_create", - "symbol_type": "Function", - "file_path": "", - "line_start": 1597, - "line_end": 1657, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_session_stats", - "name": "_tool_session_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1659, - "line_end": 1674, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_session_update", - "name": "_tool_session_update", - "symbol_type": "Function", - "file_path": "", - "line_start": 1676, - "line_end": 1721, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_include_cycles", - "name": "_tool_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 1723, - "line_end": 1732, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_include_graph", - "name": "_tool_include_graph", - "symbol_type": "Function", - "file_path": "", - "line_start": 1734, - "line_end": 1743, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_list_languages", - "name": "_tool_list_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 1745, - "line_end": 1757, - "column_start": 4, - "column_end": 108, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_replace_preview", - "name": "_tool_replace_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 1759, - "line_end": 1784, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_replace_confirm", - "name": "_tool_replace_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 1786, - "line_end": 1817, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_replace_direct", - "name": "_tool_replace_direct", - "symbol_type": "Function", - "file_path": "", - "line_start": 1819, - "line_end": 1832, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_create_file", - "name": "_tool_create_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 1834, - "line_end": 1845, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_insert_preview", - "name": "_tool_insert_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 1847, - "line_end": 1874, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_insert_confirm", - "name": "_tool_insert_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 1876, - "line_end": 1908, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_insert_direct", - "name": "_tool_insert_direct", - "symbol_type": "Function", - "file_path": "", - "line_start": 1910, - "line_end": 1926, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_movelines_preview", - "name": "_tool_movelines_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 1928, - "line_end": 1943, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_movelines_confirm", - "name": "_tool_movelines_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 1945, - "line_end": 1967, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_movelines_direct", - "name": "_tool_movelines_direct", - "symbol_type": "Function", - "file_path": "", - "line_start": 1969, - "line_end": 1979, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_history", - "name": "_tool_edit_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 1981, - "line_end": 2020, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_show", - "name": "_tool_edit_show", - "symbol_type": "Function", - "file_path": "", - "line_start": 2022, - "line_end": 2034, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_send_message", - "name": "send_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 2040, - "line_end": 2044, - "column_start": 4, - "column_end": 26, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_receive_message", - "name": "receive_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 2046, - "line_end": 2058, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_ast_stats", - "name": "_tool_ast_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 2064, - "line_end": 2072, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_ast_query", - "name": "_tool_ast_query", - "symbol_type": "Function", - "file_path": "", - "line_start": 2074, - "line_end": 2083, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_scope_analysis", - "name": "_tool_scope_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 2085, - "line_end": 2090, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_ast_dump", - "name": "_tool_ast_dump", - "symbol_type": "Function", - "file_path": "", - "line_start": 2092, - "line_end": 2188, - "column_start": 4, - "column_end": 67, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_ast_outline", - "name": "_tool_ast_outline", - "symbol_type": "Function", - "file_path": "", - "line_start": 2190, - "line_end": 2208, - "column_start": 4, - "column_end": 59, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_moveclass_preview", - "name": "_tool_moveclass_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 2214, - "line_end": 2221, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_moveclass_confirm", - "name": "_tool_moveclass_confirm", - "symbol_type": "Function", - "file_path": "", - "line_start": 2223, - "line_end": 2238, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_moveclass_direct", - "name": "_tool_moveclass_direct", - "symbol_type": "Function", - "file_path": "", - "line_start": 2240, - "line_end": 2250, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_memory_save", - "name": "_tool_memory_save", - "symbol_type": "Function", - "file_path": "", - "line_start": 2256, - "line_end": 2262, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_memory_load", - "name": "_tool_memory_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 2264, - "line_end": 2269, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_memory_list", - "name": "_tool_memory_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 2271, - "line_end": 2277, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_memory_timeline", - "name": "_tool_memory_timeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 2279, - "line_end": 2287, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_config_show", - "name": "_tool_config_show", - "symbol_type": "Function", - "file_path": "", - "line_start": 2293, - "line_end": 2296, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_config_set", - "name": "_tool_config_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 2298, - "line_end": 2303, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_refresh", - "name": "_tool_refresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 2305, - "line_end": 2342, - "column_start": 4, - "column_end": 108, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_deadcode", - "name": "_tool_deadcode", - "symbol_type": "Function", - "file_path": "", - "line_start": 2344, - "line_end": 2379, - "column_start": 4, - "column_end": 108, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_smart_insert", - "name": "_tool_smart_insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 2385, - "line_end": 2424, - "column_start": 4, - "column_end": 110, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_smart_replace", - "name": "_tool_smart_replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 2426, - "line_end": 2463, - "column_start": 4, - "column_end": 111, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_smart_move", - "name": "_tool_smart_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 2465, - "line_end": 2494, - "column_start": 4, - "column_end": 108, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_watch_start", - "name": "_tool_watch_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 2500, - "line_end": 2504, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_watch_status", - "name": "_tool_watch_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 2506, - "line_end": 2512, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_watch_stop", - "name": "_tool_watch_stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 2514, - "line_end": 2518, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_watch_stop_all", - "name": "_tool_watch_stop_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 2520, - "line_end": 2523, - "column_start": 4, - "column_end": 104, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_watch_config", - "name": "_tool_watch_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 2525, - "line_end": 2542, - "column_start": 4, - "column_end": 111, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_strip_comments", - "name": "_tool_strip_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 2548, - "line_end": 2593, - "column_start": 4, - "column_end": 113, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_rollback", - "name": "_tool_edit_rollback", - "symbol_type": "Function", - "file_path": "", - "line_start": 2595, - "line_end": 2610, - "column_start": 4, - "column_end": 109, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__tool_edit_stats", - "name": "_tool_edit_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 2612, - "line_end": 2625, - "column_start": 4, - "column_end": 97, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 2627, - "line_end": 2679, - "column_start": 4, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NekoCodeMCPServer", - "name": "NekoCodeMCPServer", - "symbol_type": "Class", - "file_path": "", - "line_start": 37, - "line_end": 2679, - "column_start": 0, - "column_end": 55, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "_read_cli_session", - "_resolve_session", - "_get_session_path", - "_refresh_file_l1", - "_find_nekocode_binary", - "_find_nekorefactor_binary", - "_load_config", - "_define_tools", - "_extract_summary", - "_run_nekocode", - "_run_nekorefactor", - "_tool_enforce_refactor_mode", - "_tool_disable_refactor_mode", - "_tool_setup_precommit_guard", - "handle_initialize", - "handle_tools_list", - "handle_resources_list", - "handle_resources_read", - "handle_tools_call", - "_tool_nekocode", - "normalize_path", - "get_or_create_session", - "smart_analyze", - "count_files", - "format_analysis_result", - "_tool_analyze", - "_tool_session_create", - "_tool_session_stats", - "_tool_session_update", - "_tool_include_cycles", - "_tool_include_graph", - "_tool_list_languages", - "_tool_replace_preview", - "_tool_replace_confirm", - "_tool_replace_direct", - "_tool_create_file", - "_tool_insert_preview", - "_tool_insert_confirm", - "_tool_insert_direct", - "_tool_movelines_preview", - "_tool_movelines_confirm", - "_tool_movelines_direct", - "_tool_edit_history", - "_tool_edit_show", - "send_message", - "receive_message", - "_tool_ast_stats", - "_tool_ast_query", - "_tool_scope_analysis", - "_tool_ast_dump", - "_tool_ast_outline", - "_tool_moveclass_preview", - "_tool_moveclass_confirm", - "_tool_moveclass_direct", - "_tool_memory_save", - "_tool_memory_load", - "_tool_memory_list", - "_tool_memory_timeline", - "_tool_config_show", - "_tool_config_set", - "_tool_refresh", - "_tool_deadcode", - "_tool_smart_insert", - "_tool_smart_replace", - "_tool_smart_move", - "_tool_watch_start", - "_tool_watch_status", - "_tool_watch_stop", - "_tool_watch_stop_all", - "_tool_watch_config", - "_tool_strip_comments", - "_tool_edit_rollback", - "_tool_edit_stats", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "asyncio", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 20 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 21 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 22 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 23 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 24 - }, - { - "module": "typing Dict, List, Any, Optional", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 25 - }, - { - "module": "logging", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 26 - }, - { - "module": "pathlib", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 66 - }, - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 95 - }, - { - "module": "shutil", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 157 - }, - { - "module": "shutil", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 210 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1357 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1371 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1372 - }, - { - "module": "uuid", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1411 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1419 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1461 - }, - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1487 - }, - { - "module": "re", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1622 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1985 - }, - { - "module": "glob", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 1986 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "debug_tree_sitter.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/debug_tree_sitter.rs", - "language": "rust", - "size_bytes": 1512, - "total_lines": 47, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.524611601Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 3, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_node", - "name": "print_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mcp_wrapper_5binary.py", - "path": "./tools/nekocode-rust/nekocode-workspace/mcp_wrapper_5binary.py", - "language": "python", - "size_bytes": 19540, - "total_lines": 410, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.530279901Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func___init__", - "name": "__init__", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 28, - "column_start": 4, - "column_end": 35, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_pick", - "name": "pick", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 20, - "column_start": 8, - "column_end": 54, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_handle_request", - "name": "handle_request", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 64, - "column_start": 4, - "column_end": 57, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__call_nekorefactor", - "name": "_call_nekorefactor", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 158, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__call_nekoimpact", - "name": "_call_nekoimpact", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 172, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__call_nekoinc", - "name": "_call_nekoinc", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 190, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__call_nekocode", - "name": "_call_nekocode", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 327, - "column_start": 4, - "column_end": 86, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 197, - "column_start": 8, - "column_end": 75, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "cmd_list", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_needs_legacy", - "name": "needs_legacy", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 208, - "column_start": 8, - "column_end": 13, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_initialize", - "name": "_handle_initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 341, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func__handle_list_tools", - "name": "_handle_list_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 378, - "column_start": 4, - "column_end": 9, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_run", - "name": "run", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 406, - "column_start": 4, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_NekoCode5BinaryMCP", - "name": "NekoCode5BinaryMCP", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 406, - "column_start": 0, - "column_end": 49, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "__init__", - "handle_request", - "_call_nekorefactor", - "_call_nekoimpact", - "_call_nekoinc", - "_call_nekocode", - "_handle_initialize", - "_handle_list_tools", - "run" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "json", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - }, - { - "module": "typing Dict, Any", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 10 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/analyzer.rs", - "language": "rust", - "size_bytes": 47462, - "total_lines": 1264, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.540367115Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_analyze", - "name": "can_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 53, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 78, - "column_start": 21, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 102, - "line_end": 102, - "column_start": 21, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 165, - "column_start": 21, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 24, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 255, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 21, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 24, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 317, - "column_start": 21, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 417, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 336, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 419, - "line_end": 487, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 427, - "line_end": 427, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 489, - "line_end": 513, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 515, - "line_end": 551, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 526, - "line_end": 526, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 556, - "line_end": 598, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 559, - "line_end": 559, - "column_start": 24, - "column_end": 88, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 600, - "line_end": 602, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 612, - "line_end": 621, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 615, - "line_end": 615, - "column_start": 21, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 623, - "line_end": 699, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 636, - "line_end": 636, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 701, - "line_end": 779, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 21, - "column_end": 92, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 784, - "line_end": 814, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 786, - "line_end": 786, - "column_start": 24, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 816, - "line_end": 818, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 828, - "line_end": 837, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 831, - "column_start": 21, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_simple", - "name": "extract_simple", - "symbol_type": "Function", - "file_path": "", - "line_start": 839, - "line_end": 847, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_traverse_cpp_nodes", - "name": "traverse_cpp_nodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 849, - "line_end": 947, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 952, - "line_end": 978, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 954, - "line_end": 954, - "column_start": 24, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 982, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 992, - "line_end": 1001, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 995, - "line_end": 995, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_simple", - "name": "extract_simple", - "symbol_type": "Function", - "file_path": "", - "line_start": 1003, - "line_end": 1071, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1027, - "line_end": 1027, - "column_start": 73, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1055, - "line_end": 1055, - "column_start": 73, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 1076, - "line_end": 1102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1078, - "line_end": 1078, - "column_start": 24, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 1104, - "line_end": 1106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 1116, - "line_end": 1125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1119, - "line_end": 1119, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_simple", - "name": "extract_simple", - "symbol_type": "Function", - "file_path": "", - "line_start": 1127, - "line_end": 1135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_traverse_csharp_nodes", - "name": "traverse_csharp_nodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 1137, - "line_end": 1228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 1233, - "line_end": 1259, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1235, - "line_end": 1235, - "column_start": 24, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language", - "name": "language", - "symbol_type": "Function", - "file_path": "", - "line_start": 1261, - "line_end": 1263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AnalyzerConfig", - "name": "AnalyzerConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Analyzer", - "name": "Analyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 66, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_JavaScriptAnalyzer", - "name": "JavaScriptAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 69, - "line_end": 72, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_TypeScriptAnalyzer", - "name": "TypeScriptAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 259, - "line_end": 262, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PythonAnalyzer", - "name": "PythonAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 308, - "line_end": 311, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RustAnalyzer", - "name": "RustAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 606, - "line_end": 609, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CppAnalyzer", - "name": "CppAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 822, - "line_end": 825, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_GoAnalyzer", - "name": "GoAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 986, - "line_end": 989, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CSharpAnalyzer", - "name": "CSharpAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 1110, - "line_end": 1113, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ast.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/ast.rs", - "language": "rust", - "size_bytes": 8343, - "total_lines": 253, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.546025058Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_tree_sitter_node", - "name": "from_tree_sitter_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 72, - "column_start": 25, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_map_node_kind", - "name": "map_node_kind", - "symbol_type": "Function", - "file_path": "", - "line_start": 87, - "line_end": 108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_count_node_type", - "name": "count_node_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_nodes_by_type", - "name": "find_nodes_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_depth", - "name": "depth", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 139, - "line_end": 139, - "column_start": 41, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_ast", - "name": "from_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_node_counts", - "name": "calculate_node_counts", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_from_tree", - "name": "build_from_tree", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_with_stats", - "name": "build_with_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_query_by_path", - "name": "query_by_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_by_path_parts", - "name": "find_by_path_parts", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 231, - "column_start": 42, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ASTNodeType", - "name": "ASTNodeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTStatistics", - "name": "ASTStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 146, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTBuilder", - "name": "ASTBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 201, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/cli.rs", - "language": "rust", - "size_bytes": 9740, - "total_lines": 343, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.549732829Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 343, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "external.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/deadcode/external.rs", - "language": "rust", - "size_bytes": 22612, - "total_lines": 600, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.554788390Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_check_tools", - "name": "check_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 22, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_command", - "name": "check_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 17, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_tool_for_language", - "name": "get_tool_for_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_tool", - "name": "run_tool", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 59, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_cargo_clippy", - "name": "run_cargo_clippy", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 67, - "column_start": 21, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_clippy_output", - "name": "parse_clippy_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 74, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_clippy_line", - "name": "parse_clippy_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_vulture", - "name": "run_vulture", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 46, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 21, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_vulture_output", - "name": "parse_vulture_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_vulture_line", - "name": "parse_vulture_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_staticcheck", - "name": "run_staticcheck", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 21, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_staticcheck_output", - "name": "parse_staticcheck_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 232, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_staticcheck_line", - "name": "parse_staticcheck_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_eslint", - "name": "run_eslint", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_clang_tidy", - "name": "run_clang_tidy", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_run_cargo_machete", - "name": "run_cargo_machete", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 292, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 288, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_machete_output", - "name": "parse_machete_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 295, - "line_end": 316, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_unused_crate", - "name": "extract_unused_crate", - "symbol_type": "Function", - "file_path": "", - "line_start": 319, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_any_tool", - "name": "has_any_tool", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_available_for_language", - "name": "get_available_for_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_any_tools", - "name": "has_any_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 386, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_display_installation_guide", - "name": "display_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 457, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_rust_installation_guide", - "name": "show_rust_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 496, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_python_installation_guide", - "name": "show_python_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 514, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_go_installation_guide", - "name": "show_go_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 516, - "line_end": 530, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_js_installation_guide", - "name": "show_js_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 548, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_cpp_installation_guide", - "name": "show_cpp_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 550, - "line_end": 567, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_comprehensive_installation_guide", - "name": "show_comprehensive_installation_guide", - "symbol_type": "Function", - "file_path": "", - "line_start": 569, - "line_end": 599, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ExternalToolManager", - "name": "ExternalToolManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 31, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExternalTool", - "name": "ExternalTool", - "symbol_type": "Class", - "file_path": "", - "line_start": 328, - "line_end": 335, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ToolAvailability", - "name": "ToolAvailability", - "symbol_type": "Class", - "file_path": "", - "line_start": 339, - "line_end": 346, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/deadcode/mod.rs", - "language": "rust", - "size_bytes": 11064, - "total_lines": 312, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.560466615Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_all_symbols", - "name": "collect_all_symbols", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_with_external_tools", - "name": "analyze_with_external_tools", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_internal_references", - "name": "analyze_internal_references", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 166, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 20, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 152, - "column_start": 20, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 162, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_entry_point", - "name": "is_entry_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_confidence", - "name": "calculate_confidence", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_by_language", - "name": "by_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_high_confidence", - "name": "high_confidence", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 20, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_statistics", - "name": "statistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 286, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 21, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_confidence_distribution", - "name": "confidence_distribution", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_DeadCodeAnalyzer", - "name": "DeadCodeAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolRef", - "name": "SymbolRef", - "symbol_type": "Class", - "file_path": "", - "line_start": 204, - "line_end": 212, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolType", - "name": "SymbolType", - "symbol_type": "Class", - "file_path": "", - "line_start": 216, - "line_end": 222, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DeadItem", - "name": "DeadItem", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 235, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DeadCodeReport", - "name": "DeadCodeReport", - "symbol_type": "Class", - "file_path": "", - "line_start": 239, - "line_end": 250, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DeadCodeStats", - "name": "DeadCodeStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 306, - "line_end": 312, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/deadcode/python.rs", - "language": "rust", - "size_bytes": 10166, - "total_lines": 300, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.564561679Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_analyze_with_vulture", - "name": "analyze_with_vulture", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 20, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 21, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_python_file", - "name": "is_python_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 22, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 48, - "column_start": 17, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_vulture_output", - "name": "parse_vulture_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_vulture_line", - "name": "parse_vulture_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_vulture_message", - "name": "parse_vulture_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_quoted_name", - "name": "extract_quoted_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 140, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_confidence", - "name": "extract_confidence", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_reason_type", - "name": "extract_reason_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_vulture_available", - "name": "check_vulture_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 176, - "line_end": 182, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 180, - "column_start": 17, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_install_instructions", - "name": "get_install_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 193, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_with_config", - "name": "analyze_with_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 204, - "column_start": 20, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 232, - "column_start": 21, - "column_end": 89, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_smart", - "name": "analyze_smart", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_python_files", - "name": "find_python_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 276, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 42, - "column_end": 66, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 283, - "line_end": 283, - "column_start": 70, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PythonDeadCodeAnalyzer", - "name": "PythonDeadCodeAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 34, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "report.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/deadcode/report.rs", - "language": "rust", - "size_bytes": 11260, - "total_lines": 302, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.568692789Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_format_json", - "name": "format_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 19, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 15, - "column_start": 64, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 17, - "line_end": 17, - "column_start": 57, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_text", - "name": "format_text", - "symbol_type": "Function", - "file_path": "", - "line_start": 22, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 50, - "column_start": 24, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_dead_item", - "name": "format_dead_item", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_github_comment", - "name": "format_github_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_csv", - "name": "format_csv", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 235, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_summary", - "name": "format_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_emoji", - "name": "get_language_emoji", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 263, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 289, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format", - "name": "format", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ReportFormatter", - "name": "ReportFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OutputFormat", - "name": "OutputFormat", - "symbol_type": "Class", - "file_path": "", - "line_start": 268, - "line_end": 275, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/deadcode/rust.rs", - "language": "rust", - "size_bytes": 11262, - "total_lines": 314, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.573059177Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_analyze_with_clippy", - "name": "analyze_with_clippy", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 21, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_unused_deps", - "name": "analyze_unused_deps", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 42, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_project_root", - "name": "find_project_root", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 56, - "column_start": 24, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_clippy_json", - "name": "parse_clippy_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_clippy_message", - "name": "parse_clippy_message", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_deadcode_warning", - "name": "is_deadcode_warning", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_symbol_info", - "name": "extract_symbol_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_warning_code", - "name": "extract_warning_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_machete_output", - "name": "parse_machete_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_crate_name", - "name": "extract_crate_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_clippy_available", - "name": "check_clippy_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 17, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_machete_available", - "name": "check_machete_available", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 280, - "line_end": 280, - "column_start": 17, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_install_instructions", - "name": "get_install_instructions", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_comprehensive", - "name": "analyze_comprehensive", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RustDeadCodeAnalyzer", - "name": "RustDeadCodeAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 9, - "column_start": 0, - "column_end": 32, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/lib.rs", - "language": "rust", - "size_bytes": 527, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.577072243Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/main.rs", - "language": "rust", - "size_bytes": 34676, - "total_lines": 996, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.581902611Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_async_main", - "name": "async_main", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 303, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_deadcode_command", - "name": "handle_deadcode_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 426, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 380, - "column_start": 20, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_session_create_command", - "name": "handle_session_create_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 610, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 498, - "column_start": 24, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_refresh_command", - "name": "handle_refresh_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 614, - "line_end": 674, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_determine_refresh_level", - "name": "determine_refresh_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 686, - "line_end": 730, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_single_file", - "name": "refresh_single_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 748, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_project_structure", - "name": "refresh_project_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 751, - "line_end": 765, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_cross_analysis", - "name": "refresh_cross_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 768, - "line_end": 816, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_refresh_advanced_analysis", - "name": "refresh_advanced_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 819, - "line_end": 852, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_smart_refresh", - "name": "smart_refresh", - "symbol_type": "Function", - "file_path": "", - "line_start": 855, - "line_end": 874, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_safe_print", - "name": "safe_print", - "symbol_type": "Function", - "file_path": "", - "line_start": 877, - "line_end": 900, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_memory_save", - "name": "handle_memory_save", - "symbol_type": "Function", - "file_path": "", - "line_start": 903, - "line_end": 912, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 905, - "line_end": 905, - "column_start": 20, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_memory_load", - "name": "handle_memory_load", - "symbol_type": "Function", - "file_path": "", - "line_start": 915, - "line_end": 928, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 917, - "line_end": 917, - "column_start": 20, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_memory_list", - "name": "handle_memory_list", - "symbol_type": "Function", - "file_path": "", - "line_start": 931, - "line_end": 953, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 933, - "line_end": 933, - "column_start": 18, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_memory_timeline", - "name": "handle_memory_timeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 956, - "line_end": 981, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 966, - "line_end": 966, - "column_start": 22, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 969, - "line_end": 969, - "column_start": 28, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_config_show", - "name": "handle_config_show", - "symbol_type": "Function", - "file_path": "", - "line_start": 984, - "line_end": 988, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_config_set", - "name": "handle_config_set", - "symbol_type": "Function", - "file_path": "", - "line_start": 991, - "line_end": 996, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RefreshLevel", - "name": "RefreshLevel", - "symbol_type": "Class", - "file_path": "", - "line_start": 677, - "line_end": 683, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode/src/session.rs", - "language": "rust", - "size_bytes": 10488, - "total_lines": 282, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.587337509Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ast_stats", - "name": "ast_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 31, - "line_end": 58, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ast_query", - "name": "ast_query", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ast_dump", - "name": "ast_dump", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 169, - "line_end": 169, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_session", - "name": "update_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_analyzer_for_file", - "name": "create_analyzer_for_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 51, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 262, - "column_start": 51, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 265, - "column_start": 47, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 45, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 271, - "column_start": 44, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 274, - "column_start": 43, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 277, - "column_start": 47, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SessionCommands", - "name": "SessionCommands", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionUpdater", - "name": "SessionUpdater", - "symbol_type": "Class", - "file_path": "", - "line_start": 148, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli_session.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/cli_session.rs", - "language": "rust", - "size_bytes": 10281, - "total_lines": 316, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.595599572Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_config_path", - "name": "config_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 110, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 102, - "column_start": 24, - "column_end": 14, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 21, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 133, - "column_start": 21, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_current_session", - "name": "set_current_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_to_history", - "name": "add_to_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 186, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 164, - "column_start": 18, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_current_session_id", - "name": "get_current_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_current_session", - "name": "clear_current_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 204, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_from_history", - "name": "get_from_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 18, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_hint", - "name": "show_hint", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 230, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session_id", - "name": "get_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 238, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 251, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_session", - "name": "save_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_current_session", - "name": "show_current_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 276, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_history", - "name": "list_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 290, - "column_start": 21, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear_history", - "name": "clear_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CliSessionConfig", - "name": "CliSessionConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionHistoryEntry", - "name": "SessionHistoryEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CliSettings", - "name": "CliSettings", - "symbol_type": "Class", - "file_path": "", - "line_start": 46, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CliSessionHelper", - "name": "CliSessionHelper", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 234, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "compact.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/compact.rs", - "language": "rust", - "size_bytes": 12099, - "total_lines": 310, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.599799351Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_compact_json", - "name": "to_compact_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 57, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analysis_result_to_compact", - "name": "analysis_result_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 72, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_file_info_to_compact", - "name": "file_info_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_symbol_to_compact", - "name": "symbol_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_function_to_compact", - "name": "function_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parameter_to_compact", - "name": "parameter_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_class_to_compact", - "name": "class_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_import_to_compact", - "name": "import_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_export_to_compact", - "name": "export_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 165, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_metrics_to_compact", - "name": "metrics_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 168, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language_to_compact", - "name": "language_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_symbol_type_to_compact", - "name": "symbol_type_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 210, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_visibility_to_compact", - "name": "visibility_to_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_compact", - "name": "format_compact", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_expand_language_code", - "name": "expand_language_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 296, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_language_emoji", - "name": "language_emoji", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 309, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_OutputMode", - "name": "OutputMode", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CompactSerializer", - "name": "CompactSerializer", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 0, - "column_end": 29, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HumanFormatter", - "name": "HumanFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 0, - "column_end": 26, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "config.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/config.rs", - "language": "rust", - "size_bytes": 6390, - "total_lines": 197, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.603749975Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_load_from_file", - "name": "load_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 20, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_file", - "name": "save_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 21, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 127, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_config_path", - "name": "default_config_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 134, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 21, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 29, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 29, - "column_end": 106, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 163, - "column_start": 29, - "column_end": 110, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 167, - "column_start": 29, - "column_end": 109, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_all", - "name": "show_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 196, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Config", - "name": "Config", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_GeneralConfig", - "name": "GeneralConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 51, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisConfig", - "name": "AnalysisConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryConfig", - "name": "MemoryConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 91, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConfigManager", - "name": "ConfigManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 108, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "error.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/error.rs", - "language": "rust", - "size_bytes": 1437, - "total_lines": 65, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.607323359Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_NekocodeError", - "name": "NekocodeError", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "io.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/io.rs", - "language": "rust", - "size_bytes": 4252, - "total_lines": 154, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.610520504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_ignore_patterns", - "name": "set_ignore_patterns", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_should_ignore", - "name": "should_ignore", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_discover_files", - "name": "discover_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 61, - "line_end": 61, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_file", - "name": "read_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_hash", - "name": "calculate_hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 105, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 88, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 95, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_file_size", - "name": "get_file_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 112, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 110, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_make_relative", - "name": "make_relative", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_normalize", - "name": "normalize", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_hidden", - "name": "is_hidden", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 22, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 151, - "column_start": 17, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileProcessor", - "name": "FileProcessor", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PathUtils", - "name": "PathUtils", - "symbol_type": "Class", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 0, - "column_end": 21, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/lib.rs", - "language": "rust", - "size_bytes": 1373, - "total_lines": 40, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.613726089Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/memory.rs", - "language": "rust", - "size_bytes": 4052, - "total_lines": 144, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.616910273Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 35, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 78, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 91, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_by_type", - "name": "list_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 99, - "column_start": 20, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 98, - "column_start": 32, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 109, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_timeline", - "name": "get_timeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 128, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 123, - "column_start": 20, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 24, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MemoryType", - "name": "MemoryType", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 15, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryEntry", - "name": "MemoryEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryManager", - "name": "MemoryManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 65, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/session.rs", - "language": "rust", - "size_bytes": 11636, - "total_lines": 375, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.620755729Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_stats", - "name": "update_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 65, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 69, - "column_start": 17, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 104, - "line_end": 125, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 116, - "column_start": 21, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_with_mode", - "name": "save_with_mode", - "symbol_type": "Function", - "file_path": "", - "line_start": 133, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 145, - "column_start": 29, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 29, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_id", - "name": "id", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_path", - "name": "path", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_touch", - "name": "touch", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_analysis_result", - "name": "add_analysis_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_files_by_language", - "name": "get_files_by_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 20, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_file_changed", - "name": "has_file_changed", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 203, - "column_start": 17, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_file", - "name": "remove_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 208, - "line_end": 212, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 209, - "column_start": 42, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 215, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_symbol", - "name": "find_symbol", - "symbol_type": "Function", - "file_path": "", - "line_start": 222, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 224, - "column_start": 61, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 247, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session", - "name": "get_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 272, - "line_end": 272, - "column_start": 24, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session_mut", - "name": "get_session_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 284, - "column_start": 24, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_session", - "name": "save_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_sessions", - "name": "list_sessions", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 305, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 38, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 310, - "column_start": 41, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 320, - "column_start": 25, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete_session", - "name": "delete_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 338, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 334, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cleanup_old_sessions", - "name": "cleanup_old_sessions", - "symbol_type": "Function", - "file_path": "", - "line_start": 341, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SessionInfo", - "name": "SessionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Session", - "name": "Session", - "symbol_type": "Class", - "file_path": "", - "line_start": 85, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionManager", - "name": "SessionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 234, - "line_end": 237, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionProvider", - "name": "SessionProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 360, - "line_end": 375, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "sqlite_session.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/sqlite_session.rs", - "language": "rust", - "size_bytes": 15079, - "total_lines": 427, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.625132043Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_init_database", - "name": "init_database", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 107, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create", - "name": "create", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 133, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 47, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 160, - "column_start": 36, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 162, - "line_end": 162, - "column_start": 36, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_file", - "name": "update_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_file", - "name": "get_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 207, - "column_start": 58, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_all_files", - "name": "get_all_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 228, - "column_start": 46, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_changes", - "name": "detect_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 252, - "column_start": 46, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_sessions", - "name": "list_sessions", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 341, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 324, - "column_start": 38, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 333, - "column_start": 32, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 335, - "column_start": 32, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_delete", - "name": "delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 344, - "line_end": 351, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 354, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 368, - "column_start": 39, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 376, - "column_start": 43, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_session_info", - "name": "to_session_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 381, - "line_end": 398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_hash", - "name": "calculate_hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_classify_change_type", - "name": "classify_change_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 418, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SqliteSession", - "name": "SqliteSession", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileRecord", - "name": "FileRecord", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangedFile", - "name": "ChangedFile", - "symbol_type": "Class", - "file_path": "", - "line_start": 34, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeType", - "name": "ChangeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 42, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionStats", - "name": "SessionStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 422, - "line_end": 427, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "traits.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/traits.rs", - "language": "rust", - "size_bytes": 1605, - "total_lines": 57, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.628962705Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_can_analyze", - "name": "can_analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 26, - "column_start": 17, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_supports_language", - "name": "supports_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tool_version", - "name": "tool_version", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AnalysisProvider", - "name": "AnalysisProvider", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_LanguageSupport", - "name": "LanguageSupport", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 39, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommandProcessor", - "name": "CommandProcessor", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "types.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekocode-core/src/types.rs", - "language": "rust", - "size_bytes": 8905, - "total_lines": 324, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.632432133Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_extension", - "name": "from_extension", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_path", - "name": "from_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 51, - "column_start": 22, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extensions", - "name": "extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 68, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_display_name", - "name": "display_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 70, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 88, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 130, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 111, - "column_start": 22, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 286, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_symbols_by_type", - "name": "get_symbols_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 292, - "column_start": 20, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_symbol_by_id", - "name": "get_symbol_by_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 299, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 298, - "column_start": 33, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_score", - "name": "from_score", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Language", - "name": "Language", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileInfo", - "name": "FileInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 93, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolType", - "name": "SymbolType", - "symbol_type": "Class", - "file_path": "", - "line_start": 135, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Visibility", - "name": "Visibility", - "symbol_type": "Class", - "file_path": "", - "line_start": 152, - "line_end": 158, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolInfo", - "name": "SymbolInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 162, - "line_end": 175, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ParameterInfo", - "name": "ParameterInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 179, - "line_end": 185, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 189, - "line_end": 198, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 202, - "line_end": 211, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImportInfo", - "name": "ImportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 215, - "line_end": 222, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExportInfo", - "name": "ExportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 226, - "line_end": 233, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CodeMetrics", - "name": "CodeMetrics", - "symbol_type": "Class", - "file_path": "", - "line_start": 237, - "line_end": 244, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisResult", - "name": "AnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 261, - "line_end": 271, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ComplexityRating", - "name": "ComplexityRating", - "symbol_type": "Class", - "file_path": "", - "line_start": 304, - "line_end": 313, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoimpact/src/analyzer.rs", - "language": "rust", - "size_bytes": 2038, - "total_lines": 77, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.639188163Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 46, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_AnalysisOptions", - "name": "AnalysisOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 8, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OutputFormat", - "name": "OutputFormat", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 56, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoimpact/src/cli.rs", - "language": "rust", - "size_bytes": 2171, - "total_lines": 88, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.642416055Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "impact.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoimpact/src/impact.rs", - "language": "rust", - "size_bytes": 18657, - "total_lines": 530, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.646431504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_emoji", - "name": "emoji", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 33, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_change_count", - "name": "from_change_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_breaking", - "name": "is_breaking", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 160, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_session", - "name": "analyze_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 175, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compare_sessions", - "name": "compare_sessions", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 195, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_results_internal", - "name": "analyze_results_internal", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 243, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 230, - "line_end": 230, - "column_start": 17, - "column_end": 39, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compare_analysis_results", - "name": "compare_analysis_results", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 359, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 258, - "column_start": 17, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 263, - "line_end": 263, - "column_start": 17, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 346, - "column_start": 17, - "column_end": 39, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compare_file_results", - "name": "compare_file_results", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 437, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 17, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 377, - "column_start": 17, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_function_signature", - "name": "get_function_signature", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 459, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 443, - "line_end": 449, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 455, - "column_start": 17, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_function_changed", - "name": "has_function_changed", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 465, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_changed_symbol", - "name": "create_changed_symbol", - "symbol_type": "Function", - "file_path": "", - "line_start": 468, - "line_end": 481, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_assess_risk", - "name": "assess_risk", - "symbol_type": "Function", - "file_path": "", - "line_start": 484, - "line_end": 529, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 491, - "column_start": 20, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 496, - "line_end": 496, - "column_start": 20, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 501, - "column_start": 20, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RiskLevel", - "name": "RiskLevel", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeType", - "name": "ChangeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 52, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangedSymbol", - "name": "ChangedSymbol", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolReference", - "name": "SymbolReference", - "symbol_type": "Class", - "file_path": "", - "line_start": 112, - "line_end": 117, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImpactResult", - "name": "ImpactResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 121, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_RiskAssessment", - "name": "RiskAssessment", - "symbol_type": "Class", - "file_path": "", - "line_start": 132, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_BreakingChange", - "name": "BreakingChange", - "symbol_type": "Class", - "file_path": "", - "line_start": 144, - "line_end": 151, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImpactAnalyzer", - "name": "ImpactAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 154, - "line_end": 156, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoimpact/src/lib.rs", - "language": "rust", - "size_bytes": 210, - "total_lines": 8, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.650226573Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoimpact/src/main.rs", - "language": "rust", - "size_bytes": 9620, - "total_lines": 221, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.653841883Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 96, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 28, - "column_start": 28, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 36, - "column_start": 28, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 28, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_result", - "name": "print_result", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 221, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoinc/src/cli.rs", - "language": "rust", - "size_bytes": 2271, - "total_lines": 97, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.660400094Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 97, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "incremental.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoinc/src/incremental.rs", - "language": "rust", - "size_bytes": 13263, - "total_lines": 409, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.663989937Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_path", - "name": "from_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 50, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 29, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_hash", - "name": "calculate_hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_changed", - "name": "has_changed", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 107, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_initialize", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 144, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_changes", - "name": "detect_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 155, - "line_end": 155, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_source_file", - "name": "is_source_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 217, - "line_end": 217, - "column_start": 59, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_file_count", - "name": "file_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_last_scan_time", - "name": "last_scan_time", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_base_path", - "name": "base_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 246, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 298, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 20, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 20, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 20, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_summary", - "name": "format_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 301, - "line_end": 314, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 330, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_initialize_session", - "name": "initialize_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 344, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_changes", - "name": "analyze_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 356, - "column_start": 24, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_detector", - "name": "get_detector", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileMetadata", - "name": "FileMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeType", - "name": "ChangeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 72, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileChange", - "name": "FileChange", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 92, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeDetector", - "name": "ChangeDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 96, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IncrementalSummary", - "name": "IncrementalSummary", - "symbol_type": "Class", - "file_path": "", - "line_start": 251, - "line_end": 264, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IncrementalAnalyzer", - "name": "IncrementalAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 318, - "line_end": 321, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoinc/src/lib.rs", - "language": "rust", - "size_bytes": 349, - "total_lines": 17, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.667610716Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoinc/src/main.rs", - "language": "rust", - "size_bytes": 8308, - "total_lines": 204, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.671043169Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 204, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 28, - "column_end": 102, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 28, - "column_end": 102, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 189, - "line_end": 189, - "column_start": 33, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 195, - "column_start": 33, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "watch.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekoinc/src/watch.rs", - "language": "rust", - "size_bytes": 11734, - "total_lines": 325, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.675044055Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 43, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_should_watch_file", - "name": "should_watch_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 122, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_watching", - "name": "start_watching", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 202, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 138, - "column_start": 54, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 138, - "column_start": 19, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 21, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 51, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_watch", - "name": "start_watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_watch", - "name": "stop_watch", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_status", - "name": "get_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_active_watches", - "name": "list_active_watches", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 313, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stop_all_watches", - "name": "stop_all_watches", - "symbol_type": "Function", - "file_path": "", - "line_start": 316, - "line_end": 322, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WatchStatus", - "name": "WatchStatus", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WatchState", - "name": "WatchState", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WatchConfig", - "name": "WatchConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileWatcher", - "name": "FileWatcher", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 88, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WatchManager", - "name": "WatchManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 206, - "line_end": 210, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekomcp/src/cli.rs", - "language": "rust", - "size_bytes": 1584, - "total_lines": 67, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.681768211Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekomcp/src/lib.rs", - "language": "rust", - "size_bytes": 559, - "total_lines": 23, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.684732502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_init", - "name": "init", - "symbol_type": "Function", - "file_path": "", - "line_start": 15, - "line_end": 19, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekomcp/src/main.rs", - "language": "rust", - "size_bytes": 6178, - "total_lines": 212, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.688454698Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 13, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_functionality", - "name": "test_functionality", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 100, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_health", - "name": "check_health", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 111, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show_capabilities", - "name": "show_capabilities", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_config", - "name": "generate_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 212, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "server.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekomcp/src/server.rs", - "language": "rust", - "size_bytes": 11783, - "total_lines": 377, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.692520922Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_router", - "name": "create_router", - "symbol_type": "Function", - "file_path": "", - "line_start": 91, - "line_end": 107, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_health_handler", - "name": "health_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 116, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_capabilities_handler", - "name": "capabilities_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 142, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_handler", - "name": "analyze_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 223, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 159, - "column_start": 30, - "column_end": 44, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_session_create_handler", - "name": "session_create_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 226, - "line_end": 248, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_session_update_handler", - "name": "session_update_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 251, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_session_stats_handler", - "name": "session_stats_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 292, - "line_end": 332, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_session_list_handler", - "name": "session_list_handler", - "symbol_type": "Function", - "file_path": "", - "line_start": 335, - "line_end": 356, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_server", - "name": "start_server", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 377, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 368, - "column_start": 17, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 374, - "line_end": 374, - "column_start": 17, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_McpServerState", - "name": "McpServerState", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalyzeRequest", - "name": "AnalyzeRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 29, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionCreateRequest", - "name": "SessionCreateRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionUpdateRequest", - "name": "SessionUpdateRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 44, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionStatsRequest", - "name": "SessionStatsRequest", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalyzeResponse", - "name": "AnalyzeResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionResponse", - "name": "SessionResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 60, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CapabilitiesResponse", - "name": "CapabilitiesResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 68, - "line_end": 73, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HealthResponse", - "name": "HealthResponse", - "symbol_type": "Class", - "file_path": "", - "line_start": 76, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cli.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/cli.rs", - "language": "rust", - "size_bytes": 9392, - "total_lines": 372, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.699420211Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 282, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SmartCommands", - "name": "SmartCommands", - "symbol_type": "Class", - "file_path": "", - "line_start": 285, - "line_end": 372, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "edit_history.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/edit_history.rs", - "language": "rust", - "size_bytes": 13181, - "total_lines": 441, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.703791941Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_from_strip_comments", - "name": "from_strip_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 163, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_summary", - "name": "summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_dir", - "name": "with_dir", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_entry", - "name": "add_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_recent", - "name": "get_recent", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_by_id", - "name": "get_by_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 33, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_by_file", - "name": "get_by_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 257, - "line_end": 262, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 260, - "line_end": 260, - "column_start": 20, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_by_session", - "name": "get_by_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 270, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 268, - "column_start": 20, - "column_end": 67, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_rollback", - "name": "rollback", - "symbol_type": "Function", - "file_path": "", - "line_start": 273, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 24, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_clear", - "name": "clear", - "symbol_type": "Function", - "file_path": "", - "line_start": 311, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 317, - "line_end": 317, - "column_start": 49, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_entry", - "name": "save_entry", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 334, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_entries", - "name": "load_entries", - "symbol_type": "Function", - "file_path": "", - "line_start": 337, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 346, - "line_end": 346, - "column_start": 24, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 349, - "column_start": 20, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 348, - "column_start": 50, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 353, - "line_end": 357, - "column_start": 26, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 355, - "column_start": 26, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 356, - "line_end": 356, - "column_start": 32, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_display", - "name": "display", - "symbol_type": "Function", - "file_path": "", - "line_start": 389, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_history", - "name": "get_history", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 436, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 433, - "column_start": 31, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_record_edit", - "name": "record_edit", - "symbol_type": "Function", - "file_path": "", - "line_start": 439, - "line_end": 441, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_EditOperation", - "name": "EditOperation", - "symbol_type": "Class", - "file_path": "", - "line_start": 27, - "line_end": 69, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_InsertPosition", - "name": "InsertPosition", - "symbol_type": "Class", - "file_path": "", - "line_start": 73, - "line_end": 80, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EditEntry", - "name": "EditEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 84, - "line_end": 114, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_EditHistory", - "name": "EditHistory", - "symbol_type": "Class", - "file_path": "", - "line_start": 197, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_HistoryStats", - "name": "HistoryStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 374, - "line_end": 386, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "language_detection.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/language_detection.rs", - "language": "rust", - "size_bytes": 855, - "total_lines": 32, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.707642107Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 8, - "line_end": 10, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_language", - "name": "detect_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 14, - "column_start": 22, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LanguageDetector", - "name": "LanguageDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 5, - "line_end": 5, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/lib.rs", - "language": "rust", - "size_bytes": 669, - "total_lines": 19, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.710626049Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/main.rs", - "language": "rust", - "size_bytes": 34928, - "total_lines": 890, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.715399191Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 25, - "line_end": 551, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 75, - "line_end": 75, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 89, - "column_start": 29, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 134, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 21, - "column_end": 38, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 300, - "column_start": 64, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 302, - "line_end": 305, - "column_start": 66, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_language_from_path", - "name": "detect_language_from_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 577, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 560, - "column_start": 18, - "column_end": 32, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_process_file", - "name": "process_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 580, - "line_end": 639, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 590, - "line_end": 590, - "column_start": 17, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 620, - "line_end": 620, - "column_start": 17, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_process_directory_recursive", - "name": "process_directory_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 642, - "line_end": 691, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_supported_file", - "name": "is_supported_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 694, - "line_end": 707, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 695, - "line_end": 695, - "column_start": 49, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_insert_position", - "name": "parse_insert_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 710, - "line_end": 730, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 719, - "line_end": 719, - "column_start": 29, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 723, - "line_end": 723, - "column_start": 29, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_semantic_position", - "name": "find_semantic_position", - "symbol_type": "Function", - "file_path": "", - "line_start": 741, - "line_end": 814, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 743, - "line_end": 743, - "column_start": 17, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 803, - "line_end": 803, - "column_start": 63, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 804, - "line_end": 804, - "column_start": 63, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_template_content", - "name": "get_template_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 817, - "line_end": 890, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 878, - "line_end": 878, - "column_start": 26, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SemanticPosition", - "name": "SemanticPosition", - "symbol_type": "Class", - "file_path": "", - "line_start": 733, - "line_end": 738, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "moveclass.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/moveclass.rs", - "language": "rust", - "size_bytes": 12511, - "total_lines": 392, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.721483475Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_move_symbol", - "name": "move_symbol", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 102, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_symbol_in_session", - "name": "find_symbol_in_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_symbol_content", - "name": "extract_symbol_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 129, - "line_end": 129, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_perform_move", - "name": "perform_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_symbol_from_file", - "name": "remove_symbol_from_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 209, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 187, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 206, - "line_end": 206, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_symbol_to_file", - "name": "add_symbol_to_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 225, - "line_end": 225, - "column_start": 29, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 253, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_file_header", - "name": "generate_file_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 285, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 261, - "column_start": 22, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_insertion_point", - "name": "find_insertion_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 288, - "line_end": 336, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_imports_for_move", - "name": "update_imports_for_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 339, - "line_end": 358, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_extra_blank_lines", - "name": "remove_extra_blank_lines", - "symbol_type": "Function", - "file_path": "", - "line_start": 361, - "line_end": 379, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MoveOptions", - "name": "MoveOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MoveClassEngine", - "name": "MoveClassEngine", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MoveResult", - "name": "MoveResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 384, - "line_end": 392, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "preview.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/preview.rs", - "language": "rust", - "size_bytes": 16893, - "total_lines": 473, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.726561428Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_preview", - "name": "generate_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 97, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 211, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_preview", - "name": "add_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_preview", - "name": "get_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_preview_mut", - "name": "get_preview_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_confirm_preview", - "name": "confirm_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 252, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 244, - "column_start": 24, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_preview", - "name": "apply_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 255, - "line_end": 302, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 259, - "column_start": 28, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_replace", - "name": "apply_replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 307, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 312, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_insert", - "name": "apply_insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 318, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 320, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 360, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_move_lines", - "name": "apply_move_lines", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 428, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 376, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 390, - "line_end": 390, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 404, - "line_end": 404, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 416, - "line_end": 416, - "column_start": 67, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 425, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_delete", - "name": "apply_delete", - "symbol_type": "Function", - "file_path": "", - "line_start": 431, - "line_end": 450, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 433, - "line_end": 433, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 447, - "line_end": 447, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_previews", - "name": "list_previews", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 457, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 455, - "line_end": 455, - "column_start": 25, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cleanup_old_previews", - "name": "cleanup_old_previews", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 463, - "line_end": 465, - "column_start": 29, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 472, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PreviewOperation", - "name": "PreviewOperation", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_InsertPosition", - "name": "InsertPosition", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MatchInfo", - "name": "MatchInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 67, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PreviewEntry", - "name": "PreviewEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 71, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PreviewManager", - "name": "PreviewManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 204, - "line_end": 207, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "replace.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/replace.rs", - "language": "rust", - "size_bytes": 10242, - "total_lines": 340, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.731231203Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 39, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 42, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_matches", - "name": "find_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 53, - "line_end": 53, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_matches_in_content", - "name": "find_matches_in_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 59, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_literal_matches", - "name": "find_literal_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_regex_matches", - "name": "find_regex_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 174, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 18, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_word_boundary", - "name": "is_word_boundary", - "symbol_type": "Function", - "file_path": "", - "line_start": 177, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_byte_pos_to_line_col", - "name": "byte_pos_to_line_col", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_preview", - "name": "create_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 224, - "line_end": 238, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace_in_file", - "name": "replace_in_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 258, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 248, - "line_end": 248, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 254, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace_in_content", - "name": "replace_in_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 261, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace_literal", - "name": "replace_literal", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_replace_regex", - "name": "replace_regex", - "symbol_type": "Function", - "file_path": "", - "line_start": 320, - "line_end": 339, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 330, - "column_start": 18, - "column_end": 83, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 333, - "line_end": 336, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ReplaceOptions", - "name": "ReplaceOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ReplaceEngine", - "name": "ReplaceEngine", - "symbol_type": "Class", - "file_path": "", - "line_start": 31, - "line_end": 33, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "cpp.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/cpp.rs", - "language": "rust", - "size_bytes": 1984, - "total_lines": 72, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.736785537Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 45, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 62, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 66, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CppRules", - "name": "CppRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 20, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "csharp.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/csharp.rs", - "language": "rust", - "size_bytes": 1968, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.739952325Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CSharpRules", - "name": "CSharpRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 23, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "go.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/go.rs", - "language": "rust", - "size_bytes": 1908, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.743055502Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 43, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 45, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_GoRules", - "name": "GoRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 19, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "javascript.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/javascript.rs", - "language": "rust", - "size_bytes": 2276, - "total_lines": 75, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.746184915Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 47, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 74, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_JavaScriptRules", - "name": "JavaScriptRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/mod.rs", - "language": "rust", - "size_bytes": 2794, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.749385495Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_line_ending", - "name": "line_ending", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 40, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_rules", - "name": "get_rules", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 57, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_by_name", - "name": "find_function_by_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 60, - "line_end": 70, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 66, - "column_start": 14, - "column_end": 32, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 69, - "column_start": 20, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_by_name", - "name": "find_class_by_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 79, - "column_start": 14, - "column_end": 32, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 20, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LanguageRules", - "name": "LanguageRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "python.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/python.rs", - "language": "rust", - "size_bytes": 5270, - "total_lines": 150, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.752739892Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 50, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 96, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 126, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 128, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PythonRules", - "name": "PythonRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 23, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "rust.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/rust.rs", - "language": "rust", - "size_bytes": 1927, - "total_lines": 71, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.756001596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 55, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 65, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RustRules", - "name": "RustRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 21, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "typescript.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/languages/typescript.rs", - "language": "rust", - "size_bytes": 1948, - "total_lines": 70, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.759131600Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 12, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 16, - "line_end": 24, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 44, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 46, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 60, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default_indentation", - "name": "default_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 62, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_line", - "name": "is_comment_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 69, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TypeScriptRules", - "name": "TypeScriptRules", - "symbol_type": "Class", - "file_path": "", - "line_start": 7, - "line_end": 7, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/smart/mod.rs", - "language": "rust", - "size_bytes": 21010, - "total_lines": 627, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.763861836Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_session_id", - "name": "from_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_smart_insert", - "name": "smart_insert", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 38, - "line_end": 38, - "column_start": 24, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_smart_replace", - "name": "smart_replace", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 141, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 24, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_smart_move", - "name": "smart_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 144, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 156, - "column_start": 24, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_ast_info", - "name": "get_ast_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 227, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 192, - "column_start": 18, - "column_end": 56, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 195, - "column_start": 24, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 204, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 213, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 218, - "column_start": 17, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end", - "name": "find_function_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_start", - "name": "find_function_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_insert_point", - "name": "find_class_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 241, - "line_end": 245, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_imports_insert_point", - "name": "find_imports_insert_point", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_indentation", - "name": "detect_indentation", - "symbol_type": "Function", - "file_path": "", - "line_start": 253, - "line_end": 257, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_content", - "name": "format_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 259, - "line_end": 277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 274, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_preview", - "name": "generate_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 279, - "line_end": 303, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 282, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_insertion", - "name": "apply_insertion", - "symbol_type": "Function", - "file_path": "", - "line_start": 305, - "line_end": 332, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 308, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 310, - "column_start": 62, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_scope_range", - "name": "find_scope_range", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 362, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_matches", - "name": "find_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 364, - "line_end": 410, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 367, - "line_end": 367, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_replace_preview", - "name": "generate_replace_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 412, - "line_end": 419, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_replacements", - "name": "apply_replacements", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 460, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 424, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 57, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 430, - "line_end": 433, - "column_start": 31, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 457, - "line_end": 457, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_symbol_path", - "name": "parse_symbol_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 462, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_symbol_code", - "name": "extract_symbol_code", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 476, - "line_end": 476, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_apply_move", - "name": "apply_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 545, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 500, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 502, - "line_end": 502, - "column_start": 71, - "column_end": 88, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 518, - "line_end": 518, - "column_start": 21, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 524, - "line_end": 524, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 528, - "line_end": 528, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 532, - "column_start": 25, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SmartRefactor", - "name": "SmartRefactor", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 14, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SmartPosition", - "name": "SmartPosition", - "symbol_type": "Class", - "file_path": "", - "line_start": 550, - "line_end": 556, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Scope", - "name": "Scope", - "symbol_type": "Class", - "file_path": "", - "line_start": 560, - "line_end": 563, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SmartResult", - "name": "SmartResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 567, - "line_end": 574, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_InsertPoint", - "name": "InsertPoint", - "symbol_type": "Class", - "file_path": "", - "line_start": 578, - "line_end": 582, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Indent", - "name": "Indent", - "symbol_type": "Class", - "file_path": "", - "line_start": 586, - "line_end": 589, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AstInfo", - "name": "AstInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 593, - "line_end": 598, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 601, - "line_end": 605, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 608, - "line_end": 612, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Range", - "name": "Range", - "symbol_type": "Class", - "file_path": "", - "line_start": 616, - "line_end": 619, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Match", - "name": "Match", - "symbol_type": "Class", - "file_path": "", - "line_start": 623, - "line_end": 627, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "split_file.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/split_file.rs", - "language": "rust", - "size_bytes": 21205, - "total_lines": 548, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.769553486Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 47, - "line_end": 47, - "column_start": 29, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 61, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split_file", - "name": "split_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 94, - "line_end": 94, - "column_start": 21, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 105, - "line_end": 105, - "column_start": 21, - "column_end": 104, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 57, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split_by_functions", - "name": "split_by_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 124, - "line_end": 192, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split_by_classes", - "name": "split_by_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 333, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 291, - "column_start": 20, - "column_end": 74, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_split_by_size", - "name": "split_by_size", - "symbol_type": "Function", - "file_path": "", - "line_start": 336, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_class_file_header", - "name": "generate_class_file_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_file_header", - "name": "generate_file_header", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 425, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_impl_block_for_class", - "name": "find_impl_block_for_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 429, - "line_end": 475, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_impl_block_end", - "name": "find_impl_block_end", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 497, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_method_function", - "name": "is_method_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 500, - "line_end": 548, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileSplitter", - "name": "FileSplitter", - "symbol_type": "Class", - "file_path": "", - "line_start": 9, - "line_end": 12, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SplitResult", - "name": "SplitResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 20, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SplitFileInfo", - "name": "SplitFileInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 23, - "line_end": 29, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SplitBy", - "name": "SplitBy", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "strip_comments.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekorefactor/src/strip_comments.rs", - "language": "rust", - "size_bytes": 17538, - "total_lines": 501, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.774361738Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 56, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_for_language", - "name": "for_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 72, - "line_end": 137, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_reduction_percentage", - "name": "reduction_percentage", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 162, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_display", - "name": "display", - "symbol_type": "Function", - "file_path": "", - "line_start": 164, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_strip", - "name": "strip", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 274, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 239, - "column_start": 24, - "column_end": 65, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 250, - "column_start": 35, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_comments", - "name": "collect_comments", - "symbol_type": "Function", - "file_path": "", - "line_start": 277, - "line_end": 325, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_comment_node", - "name": "is_comment_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 328, - "line_end": 345, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_should_keep_comment", - "name": "should_keep_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 348, - "line_end": 380, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_doc_comment", - "name": "is_doc_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 390, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_license_comment", - "name": "is_license_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 403, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_directive_comment", - "name": "is_directive_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_important_comment", - "name": "is_important_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_inline_comment", - "name": "is_inline_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 439, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_block_comment", - "name": "is_block_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 442, - "line_end": 445, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_trailing_comment", - "name": "is_trailing_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 448, - "line_end": 457, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_docstring_node", - "name": "is_docstring_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 460, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_replacement", - "name": "get_replacement", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 500, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_StripOptions", - "name": "StripOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 14, - "line_end": 41, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommentFormat", - "name": "CommentFormat", - "symbol_type": "Class", - "file_path": "", - "line_start": 61, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_StripStats", - "name": "StripStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 142, - "line_end": 154, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommentStripper", - "name": "CommentStripper", - "symbol_type": "Class", - "file_path": "", - "line_start": 201, - "line_end": 206, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/nekosplit_rust/src/main.rs", - "language": "rust", - "size_bytes": 18774, - "total_lines": 469, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.782216668Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_read_to_string", - "name": "read_to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_print_outline", - "name": "print_outline", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 122, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 112, - "column_start": 33, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 113, - "line_end": 113, - "column_start": 34, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 114, - "line_end": 114, - "column_start": 34, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 33, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 119, - "column_start": 34, - "column_end": 48, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_fn_block", - "name": "extract_fn_block", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 150, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 148, - "column_start": 50, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_block_with_braces", - "name": "extract_block_with_braces", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 169, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_header_start", - "name": "find_header_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 183, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_item", - "name": "extract_item", - "symbol_type": "Function", - "file_path": "", - "line_start": 185, - "line_end": 205, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 50, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_snake_name", - "name": "snake_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 227, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_simple_candidates", - "name": "simple_candidates", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 256, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_map", - "name": "parse_map", - "symbol_type": "Function", - "file_path": "", - "line_start": 258, - "line_end": 266, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_suggest_target", - "name": "suggest_target", - "symbol_type": "Function", - "file_path": "", - "line_start": 268, - "line_end": 289, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cargo_check", - "name": "cargo_check", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 295, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_top_level_uses", - "name": "collect_top_level_uses", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 302, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 20, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 37, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_prepend_uses_if_missing", - "name": "prepend_uses_if_missing", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 323, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_mod_rs", - "name": "update_mod_rs", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 345, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 329, - "line_end": 329, - "column_start": 22, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 330, - "column_start": 24, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_ensure_parent_dir", - "name": "ensure_parent_dir", - "symbol_type": "Function", - "file_path": "", - "line_start": 347, - "line_end": 350, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 352, - "line_end": 469, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 402, - "column_start": 30, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 403, - "line_end": 403, - "column_start": 25, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 421, - "column_start": 30, - "column_end": 54, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 422, - "line_end": 422, - "column_start": 25, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 423, - "column_start": 53, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 423, - "line_end": 423, - "column_start": 92, - "column_end": 111, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 16, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Kind", - "name": "Kind", - "symbol_type": "Class", - "file_path": "", - "line_start": 97, - "line_end": 97, - "column_start": 0, - "column_end": 43, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Candidate", - "name": "Candidate", - "symbol_type": "Class", - "file_path": "", - "line_start": 208, - "line_end": 214, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "setup-5binary.py", - "path": "./tools/nekocode-rust/nekocode-workspace/setup-5binary.py", - "language": "python", - "size_bytes": 9612, - "total_lines": 266, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.788711837Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [ - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "setup.py", - "path": "./tools/nekocode-rust/nekocode-workspace/setup.py", - "language": "python", - "size_bytes": 15550, - "total_lines": 394, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.792569147Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 10, - "line_end": 391, - "column_start": 0, - "column_end": 4, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [], - "imports": [ - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 6 - }, - { - "module": "sys", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "subprocess", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "test_visibility.rs", - "path": "./tools/nekocode-rust/nekocode-workspace/test_visibility.rs", - "language": "rust", - "size_bytes": 103, - "total_lines": 4, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.796145428Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_public_function", - "name": "public_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 1, - "line_end": 1, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PublicStruct", - "name": "PublicStruct", - "symbol_type": "Class", - "file_path": "", - "line_start": 2, - "line_end": 2, - "column_start": 0, - "column_end": 26, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PublicEnum", - "name": "PublicEnum", - "symbol_type": "Class", - "file_path": "", - "line_start": 3, - "line_end": 3, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PublicTrait", - "name": "PublicTrait", - "symbol_type": "Class", - "file_path": "", - "line_start": 4, - "line_end": 4, - "column_start": 0, - "column_end": 24, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "setup.py", - "path": "./tools/nekocode-rust/releases/setup.py", - "language": "python", - "size_bytes": 2780, - "total_lines": 86, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.803678615Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [ - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 5 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/cpp/analyzer.rs", - "language": "rust", - "size_bytes": 11474, - "total_lines": 301, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.812783415Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 64, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 129, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 134, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 183, - "column_start": 33, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 184, - "line_end": 184, - "column_start": 36, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 204, - "line_end": 236, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_from_analysis", - "name": "build_ast_from_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 239, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 298, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CppAnalyzer", - "name": "CppAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/cpp/mod.rs", - "language": "rust", - "size_bytes": 186, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.817486086Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/cpp/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 18729, - "total_lines": 446, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.821404089Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 83, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 152, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 172, - "column_start": 73, - "column_end": 109, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_modifiers", - "name": "extract_function_modifiers", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 240, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_base_classes", - "name": "extract_base_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 290, - "column_start": 34, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 368, - "line_end": 370, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 378, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 380, - "line_end": 445, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 410, - "column_start": 24, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterCppAnalyzer", - "name": "TreeSitterCppAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/csharp/analyzer.rs", - "language": "rust", - "size_bytes": 12459, - "total_lines": 316, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.827477078Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 21, - "line_end": 23, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 71, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 76, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 84, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 136, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_functions", - "name": "regex_fallback_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_classes", - "name": "regex_fallback_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 213, - "line_end": 213, - "column_start": 33, - "column_end": 45, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 214, - "column_start": 36, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_imports", - "name": "regex_fallback_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 234, - "line_end": 251, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_from_analysis", - "name": "build_ast_from_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 254, - "line_end": 287, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 290, - "line_end": 309, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 313, - "line_end": 315, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_CSharpAnalyzer", - "name": "CSharpAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 16, - "line_end": 18, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/csharp/mod.rs", - "language": "rust", - "size_bytes": 192, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.831625627Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/csharp/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 20089, - "total_lines": 476, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.835769908Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 95, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 98, - "line_end": 178, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 188, - "line_end": 226, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_async_method", - "name": "is_async_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 229, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_method_modifiers", - "name": "extract_method_modifiers", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_type_modifiers", - "name": "extract_type_modifiers", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 288, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_base_classes", - "name": "extract_base_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 291, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 307, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 347, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 350, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 398, - "line_end": 400, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 402, - "line_end": 404, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 406, - "line_end": 408, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 410, - "line_end": 475, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 440, - "column_start": 24, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterCSharpAnalyzer", - "name": "TreeSitterCSharpAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/go/analyzer.rs", - "language": "rust", - "size_bytes": 8620, - "total_lines": 238, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.841581646Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 52, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 54, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_structs", - "name": "extract_structs", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 94, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 96, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_from_analysis", - "name": "build_ast_from_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 121, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 173, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 180, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 182, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 186, - "line_end": 188, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 231, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_GoAnalyzer", - "name": "GoAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/go/mod.rs", - "language": "rust", - "size_bytes": 184, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.845500439Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/go/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 17967, - "total_lines": 436, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.849366495Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 78, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 89, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 92, - "line_end": 154, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 157, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 200, - "line_end": 240, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_methods_for_type", - "name": "extract_methods_for_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 243, - "line_end": 293, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_interface_methods", - "name": "extract_interface_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 296, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 303, - "line_end": 307, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 310, - "line_end": 353, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 360, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 362, - "line_end": 364, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 368, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 435, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 400, - "column_start": 24, - "column_end": 69, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterGoAnalyzer", - "name": "TreeSitterGoAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/javascript/analyzer.rs", - "language": "rust", - "size_bytes": 44326, - "total_lines": 1115, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.856886542Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 33, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_meaningful_content", - "name": "has_meaningful_content", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 52, - "line_end": 54, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_all_constructs_single_pass", - "name": "extract_all_constructs_single_pass", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 117, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_declaration", - "name": "parse_function_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 146, - "line_end": 177, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_arrow_function", - "name": "parse_arrow_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 180, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_parameters", - "name": "parse_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 228, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_class_declaration", - "name": "parse_class_declaration", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 282, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 297, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_class_method", - "name": "parse_class_method", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 331, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 334, - "line_end": 352, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_import_statement", - "name": "parse_import_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 365, - "line_end": 365, - "column_start": 67, - "column_end": 104, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_exports", - "name": "extract_exports", - "symbol_type": "Function", - "file_path": "", - "line_start": 388, - "line_end": 406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_export_statement", - "name": "parse_export_statement", - "symbol_type": "Function", - "file_path": "", - "line_start": 409, - "line_end": 442, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 445, - "line_end": 483, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_calls", - "name": "extract_function_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 486, - "line_end": 509, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_call", - "name": "parse_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 512, - "line_end": 534, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_line_numbers", - "name": "update_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 537, - "line_end": 563, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 566, - "line_end": 573, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_method_line_number", - "name": "find_method_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 576, - "line_end": 587, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_function_end_line", - "name": "find_function_end_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 590, - "line_end": 616, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_end_line", - "name": "find_class_end_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 628, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 635, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 637, - "line_end": 639, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 641, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 801, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 697, - "line_end": 697, - "column_start": 34, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 698, - "column_start": 29, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_functions", - "name": "regex_fallback_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 806, - "line_end": 860, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_classes", - "name": "regex_fallback_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 863, - "line_end": 883, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods_regex", - "name": "extract_class_methods_regex", - "symbol_type": "Function", - "file_path": "", - "line_start": 886, - "line_end": 923, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_fallback_ast", - "name": "build_fallback_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 926, - "line_end": 975, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 986, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 989, - "line_end": 1062, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_name_from_pair", - "name": "extract_class_name_from_pair", - "symbol_type": "Function", - "file_path": "", - "line_start": 1065, - "line_end": 1072, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_name_from_pair", - "name": "extract_function_name_from_pair", - "symbol_type": "Function", - "file_path": "", - "line_start": 1074, - "line_end": 1081, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_method_name_from_pair", - "name": "extract_method_name_from_pair", - "symbol_type": "Function", - "file_path": "", - "line_start": 1083, - "line_end": 1090, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_import_info_from_pair", - "name": "extract_import_info_from_pair", - "symbol_type": "Function", - "file_path": "", - "line_start": 1092, - "line_end": 1099, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1095, - "line_end": 1095, - "column_start": 56, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_export_info_from_pair", - "name": "extract_export_info_from_pair", - "symbol_type": "Function", - "file_path": "", - "line_start": 1101, - "line_end": 1108, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 1112, - "line_end": 1114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ExtractedConstructs", - "name": "ExtractedConstructs", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_JavaScriptParser", - "name": "JavaScriptParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 44, - "line_end": 44, - "column_start": 0, - "column_end": 28, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_JavaScriptAnalyzer", - "name": "JavaScriptAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 49, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/javascript/mod.rs", - "language": "rust", - "size_bytes": 200, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.862561807Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/javascript/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 21087, - "total_lines": 519, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.866604323Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 27, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 24, - "line_end": 24, - "column_start": 21, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_typescript", - "name": "set_typescript", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 21, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set_tsx", - "name": "set_tsx", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 41, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 39, - "line_end": 39, - "column_start": 21, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_current_language", - "name": "get_current_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 44, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 103, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 148, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 187, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 174, - "column_start": 75, - "column_end": 112, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_exports", - "name": "extract_exports", - "symbol_type": "Function", - "file_path": "", - "line_start": 190, - "line_end": 225, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_calls", - "name": "extract_function_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 305, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 289, - "line_end": 292, - "column_start": 26, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 293, - "line_end": 293, - "column_start": 25, - "column_end": 35, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 308, - "line_end": 323, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_async_function", - "name": "is_async_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 326, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 343, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 377, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 438, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 518, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 481, - "column_start": 24, - "column_end": 66, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterJavaScriptAnalyzer", - "name": "TreeSitterJavaScriptAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/mod.rs", - "language": "rust", - "size_bytes": 106, - "total_lines": 7, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.870975410Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/python/analyzer.rs", - "language": "rust", - "size_bytes": 29320, - "total_lines": 773, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.876255596Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 29, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_definition", - "name": "parse_function_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 58, - "line_end": 98, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_lambda_function", - "name": "parse_lambda_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 101, - "line_end": 114, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_parameters", - "name": "parse_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_class_definition", - "name": "parse_class_definition", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 199, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_inheritance", - "name": "parse_inheritance", - "symbol_type": "Function", - "file_path": "", - "line_start": 202, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_from_import", - "name": "parse_from_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 272, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_simple_import", - "name": "parse_simple_import", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_calls", - "name": "extract_function_calls", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_function_call", - "name": "parse_function_call", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 356, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 359, - "line_end": 398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_line_numbers", - "name": "update_line_numbers", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 422, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 425, - "line_end": 433, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_python_block_end_line", - "name": "find_python_block_end_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 461, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods_python", - "name": "extract_class_methods_python", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 495, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_method_name_from_line", - "name": "extract_method_name_from_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 512, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 517, - "line_end": 519, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 521, - "line_end": 523, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 525, - "line_end": 527, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 529, - "line_end": 629, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_functions", - "name": "regex_fallback_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 660, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_classes", - "name": "regex_fallback_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 663, - "line_end": 688, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 673, - "line_end": 673, - "column_start": 85, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_regex_fallback_imports", - "name": "regex_fallback_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 691, - "line_end": 730, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 703, - "line_end": 703, - "column_start": 33, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 704, - "line_end": 704, - "column_start": 36, - "column_end": 53, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_from_analysis", - "name": "build_ast_from_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 766, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 770, - "line_end": 772, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PythonParser", - "name": "PythonParser", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 19, - "column_start": 0, - "column_end": 24, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PythonAnalyzer", - "name": "PythonAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 22, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/python/mod.rs", - "language": "rust", - "size_bytes": 192, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.881217600Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/python/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 18291, - "total_lines": 457, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.885476776Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 80, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 123, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 206, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_async_function", - "name": "is_async_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 217, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_superclasses", - "name": "extract_superclasses", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 233, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_class_methods", - "name": "extract_class_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 271, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_decorators", - "name": "extract_decorators", - "symbol_type": "Function", - "file_path": "", - "line_start": 274, - "line_end": 294, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imported_names", - "name": "extract_imported_names", - "symbol_type": "Function", - "file_path": "", - "line_start": 297, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 374, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 381, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 385, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 387, - "line_end": 389, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 456, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 421, - "line_end": 421, - "column_start": 24, - "column_end": 73, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterPythonAnalyzer", - "name": "TreeSitterPythonAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/rust/analyzer.rs", - "language": "rust", - "size_bytes": 9168, - "total_lines": 255, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.891596571Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 14, - "line_end": 16, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity", - "name": "calculate_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 55, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 79, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_structs", - "name": "extract_structs", - "symbol_type": "Function", - "file_path": "", - "line_start": 81, - "line_end": 118, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 135, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_from_analysis", - "name": "build_ast_from_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_line_number", - "name": "find_line_number", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 195, - "line_end": 197, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 201, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 205, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 207, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 252, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RustAnalyzer", - "name": "RustAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 11, - "column_start": 0, - "column_end": 24, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/analyzers/rust/mod.rs", - "language": "rust", - "size_bytes": 188, - "total_lines": 6, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.895974898Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "tree_sitter_analyzer.rs", - "path": "./tools/nekocode-rust/src/analyzers/rust/tree_sitter_analyzer.rs", - "language": "rust", - "size_bytes": 21707, - "total_lines": 506, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.900072838Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 20, - "line_end": 26, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 23, - "line_end": 23, - "column_start": 21, - "column_end": 80, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_functions", - "name": "extract_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 87, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_classes", - "name": "extract_classes", - "symbol_type": "Function", - "file_path": "", - "line_start": 90, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_imports", - "name": "extract_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_parameters", - "name": "extract_parameters", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 267, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_async_function", - "name": "is_async_function", - "symbol_type": "Function", - "file_path": "", - "line_start": 270, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_function_modifiers", - "name": "extract_function_modifiers", - "symbol_type": "Function", - "file_path": "", - "line_start": 282, - "line_end": 306, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_type_modifiers", - "name": "extract_type_modifiers", - "symbol_type": "Function", - "file_path": "", - "line_start": 309, - "line_end": 327, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_extract_associated_functions", - "name": "extract_associated_functions", - "symbol_type": "Function", - "file_path": "", - "line_start": 330, - "line_end": 366, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 351, - "column_start": 52, - "column_end": 133, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast", - "name": "build_ast", - "symbol_type": "Function", - "file_path": "", - "line_start": 369, - "line_end": 373, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_ast_recursive", - "name": "build_ast_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 423, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language", - "name": "get_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 428, - "line_end": 430, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_language_name", - "name": "get_language_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 432, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_supported_extensions", - "name": "get_supported_extensions", - "symbol_type": "Function", - "file_path": "", - "line_start": 436, - "line_end": 438, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze", - "name": "analyze", - "symbol_type": "Function", - "file_path": "", - "line_start": 440, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 470, - "line_end": 470, - "column_start": 24, - "column_end": 71, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_TreeSitterRustAnalyzer", - "name": "TreeSitterRustAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 17, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "traits.rs", - "path": "./tools/nekocode-rust/src/analyzers/traits.rs", - "language": "rust", - "size_bytes": 1326, - "total_lines": 37, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.904473819Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_can_analyze_extension", - "name": "can_analyze_extension", - "symbol_type": "Function", - "file_path": "", - "line_start": 27, - "line_end": 31, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 30, - "column_start": 17, - "column_end": 59, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_can_analyze_language", - "name": "can_analyze_language", - "symbol_type": "Function", - "file_path": "", - "line_start": 34, - "line_end": 36, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_LanguageAnalyzer", - "name": "LanguageAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 13, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": true, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/commands/mod.rs", - "language": "rust", - "size_bytes": 38, - "total_lines": 2, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.908680878Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session_update.rs", - "path": "./tools/nekocode-rust/src/commands/session_update.rs", - "language": "rust", - "size_bytes": 6095, - "total_lines": 170, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.911870405Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_handle_session_update", - "name": "handle_session_update", - "symbol_type": "Function", - "file_path": "", - "line_start": 11, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_dry_run", - "name": "handle_dry_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 63, - "line_end": 63, - "column_start": 20, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_no_changes", - "name": "test_session_update_no_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_dry_run", - "name": "test_dry_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "watch.rs", - "path": "./tools/nekocode-rust/src/commands/watch.rs", - "language": "rust", - "size_bytes": 36493, - "total_lines": 964, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.916945986Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 49, - "line_end": 101, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 100, - "column_start": 48, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_from_config", - "name": "load_from_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 145, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 117, - "line_end": 117, - "column_start": 24, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 122, - "line_end": 122, - "column_start": 26, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 126, - "line_end": 126, - "column_start": 26, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 127, - "column_start": 21, - "column_end": 35, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 131, - "line_end": 131, - "column_start": 26, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 21, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 49, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 132, - "column_start": 69, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 26, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 21, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 49, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 137, - "line_end": 137, - "column_start": 69, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 141, - "column_start": 26, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 21, - "column_end": 97, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 49, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 142, - "column_start": 69, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_pid_file", - "name": "get_pid_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 153, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_lock_file", - "name": "get_lock_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_write_pid_file", - "name": "write_pid_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 168, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 166, - "column_start": 26, - "column_end": 88, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_read_pid_file", - "name": "read_pid_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 171, - "line_end": 184, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 178, - "line_end": 178, - "column_start": 26, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 181, - "line_end": 181, - "column_start": 26, - "column_end": 72, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_remove_pid_file", - "name": "remove_pid_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 187, - "line_end": 194, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 191, - "line_end": 191, - "column_start": 30, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_process_running", - "name": "is_process_running", - "symbol_type": "Function", - "file_path": "", - "line_start": 197, - "line_end": 219, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 216, - "column_start": 21, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 231, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_should_watch_file", - "name": "should_watch_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 264, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_start_watching", - "name": "start_watching", - "symbol_type": "Function", - "file_path": "", - "line_start": 267, - "line_end": 348, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 280, - "column_start": 54, - "column_end": 9, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 300, - "line_end": 300, - "column_start": 51, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_trigger_session_update", - "name": "trigger_session_update", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 367, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_parent_alive", - "name": "check_parent_alive", - "symbol_type": "Function", - "file_path": "", - "line_start": 370, - "line_end": 375, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_watch_start", - "name": "handle_watch_start", - "symbol_type": "Function", - "file_path": "", - "line_start": 379, - "line_end": 423, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 383, - "line_end": 383, - "column_start": 20, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_watch_status", - "name": "handle_watch_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 472, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session_watch_status", - "name": "get_session_watch_status", - "symbol_type": "Function", - "file_path": "", - "line_start": 475, - "line_end": 504, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 478, - "line_end": 478, - "column_start": 20, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_watch_stop", - "name": "handle_watch_stop", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 538, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_watch_stop_all", - "name": "handle_watch_stop_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 554, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_watch_daemon", - "name": "handle_watch_daemon", - "symbol_type": "Function", - "file_path": "", - "line_start": 557, - "line_end": 573, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 561, - "column_start": 20, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_pid_file_operations", - "name": "test_pid_file_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 583, - "line_end": 596, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_should_watch_file", - "name": "test_should_watch_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 599, - "line_end": 616, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_watch_status_no_active_watchers", - "name": "test_watch_status_no_active_watchers", - "symbol_type": "Function", - "file_path": "", - "line_start": 619, - "line_end": 624, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_watch_session_not_found", - "name": "test_watch_session_not_found", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 631, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_basic_file_watching", - "name": "test_basic_file_watching", - "symbol_type": "Function", - "file_path": "", - "line_start": 634, - "line_end": 648, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_watch_config_defaults", - "name": "test_watch_config_defaults", - "symbol_type": "Function", - "file_path": "", - "line_start": 651, - "line_end": 658, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_watch_start_integration", - "name": "test_watch_start_integration", - "symbol_type": "Function", - "file_path": "", - "line_start": 662, - "line_end": 675, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_file_modification_detection", - "name": "test_file_modification_detection", - "symbol_type": "Function", - "file_path": "", - "line_start": 679, - "line_end": 694, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_pid_management", - "name": "test_pid_management", - "symbol_type": "Function", - "file_path": "", - "line_start": 698, - "line_end": 718, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_error_handling_invalid_session", - "name": "test_error_handling_invalid_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_basic_file_watching", - "name": "test_issue_requirement_basic_file_watching", - "symbol_type": "Function", - "file_path": "", - "line_start": 734, - "line_end": 752, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_command_interface", - "name": "test_issue_requirement_command_interface", - "symbol_type": "Function", - "file_path": "", - "line_start": 756, - "line_end": 775, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_pid_file_management", - "name": "test_issue_requirement_pid_file_management", - "symbol_type": "Function", - "file_path": "", - "line_start": 779, - "line_end": 803, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_file_filtering", - "name": "test_issue_requirement_file_filtering", - "symbol_type": "Function", - "file_path": "", - "line_start": 807, - "line_end": 841, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_configuration", - "name": "test_issue_requirement_configuration", - "symbol_type": "Function", - "file_path": "", - "line_start": 845, - "line_end": 865, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_status_reporting", - "name": "test_issue_requirement_status_reporting", - "symbol_type": "Function", - "file_path": "", - "line_start": 869, - "line_end": 885, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_error_handling", - "name": "test_issue_requirement_error_handling", - "symbol_type": "Function", - "file_path": "", - "line_start": 889, - "line_end": 906, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_process_safety", - "name": "test_issue_requirement_process_safety", - "symbol_type": "Function", - "file_path": "", - "line_start": 910, - "line_end": 939, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_issue_requirement_performance", - "name": "test_issue_requirement_performance", - "symbol_type": "Function", - "file_path": "", - "line_start": 943, - "line_end": 963, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_WatchStatus", - "name": "WatchStatus", - "symbol_type": "Class", - "file_path": "", - "line_start": 21, - "line_end": 28, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WatchState", - "name": "WatchState", - "symbol_type": "Class", - "file_path": "", - "line_start": 32, - "line_end": 36, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_WatchConfig", - "name": "WatchConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 46, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PidManager", - "name": "PidManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 149, - "line_end": 149, - "column_start": 0, - "column_end": 22, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileWatcher", - "name": "FileWatcher", - "symbol_type": "Class", - "file_path": "", - "line_start": 223, - "line_end": 227, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "ast.rs", - "path": "./tools/nekocode-rust/src/core/ast.rs", - "language": "rust", - "size_bytes": 27915, - "total_lines": 807, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.924289783Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 150, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 198, - "line_end": 213, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_child", - "name": "add_child", - "symbol_type": "Function", - "file_path": "", - "line_start": 216, - "line_end": 220, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build_scope_path", - "name": "build_scope_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 229, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_children_by_type", - "name": "find_children_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 232, - "line_end": 237, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 20, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_descendants_by_type", - "name": "find_descendants_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 240, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_descendants_recursive", - "name": "find_descendants_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 254, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_query_by_path", - "name": "query_by_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 265, - "line_end": 281, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 275, - "line_end": 275, - "column_start": 42, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_parse_query_path", - "name": "parse_query_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_query_by_parsed_path", - "name": "query_by_parsed_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 314, - "line_end": 393, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 372, - "column_start": 54, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_could_belong_to_parent", - "name": "could_belong_to_parent", - "symbol_type": "Function", - "file_path": "", - "line_start": 396, - "line_end": 405, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_matches_name", - "name": "matches_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 408, - "line_end": 434, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_child_by_name", - "name": "find_child_by_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 437, - "line_end": 443, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_query_by_path_recursive", - "name": "query_by_path_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 446, - "line_end": 449, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_node_at_line", - "name": "find_node_at_line", - "symbol_type": "Function", - "file_path": "", - "line_start": 452, - "line_end": 466, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_type_string", - "name": "type_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 469, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_as_tree", - "name": "dump_as_tree", - "symbol_type": "Function", - "file_path": "", - "line_start": 474, - "line_end": 498, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_dump_as_flat", - "name": "dump_as_flat", - "symbol_type": "Function", - "file_path": "", - "line_start": 501, - "line_end": 505, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_flat_recursive", - "name": "collect_flat_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 508, - "line_end": 521, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 538, - "line_end": 549, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_from_root", - "name": "update_from_root", - "symbol_type": "Function", - "file_path": "", - "line_start": 554, - "line_end": 558, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_collect_statistics_recursive", - "name": "collect_statistics_recursive", - "symbol_type": "Function", - "file_path": "", - "line_start": 561, - "line_end": 599, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_merge", - "name": "merge", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 614, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 625, - "line_end": 630, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_enter_scope", - "name": "enter_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 633, - "line_end": 643, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_exit_scope", - "name": "exit_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 646, - "line_end": 654, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_add_node", - "name": "add_node", - "symbol_type": "Function", - "file_path": "", - "line_start": 657, - "line_end": 663, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_current_scope", - "name": "get_current_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 666, - "line_end": 672, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_current_scope_mut", - "name": "get_current_scope_mut", - "symbol_type": "Function", - "file_path": "", - "line_start": 675, - "line_end": 681, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_build", - "name": "build", - "symbol_type": "Function", - "file_path": "", - "line_start": 684, - "line_end": 686, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 692, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_node_creation", - "name": "test_ast_node_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 705, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_builder", - "name": "test_ast_builder", - "symbol_type": "Function", - "file_path": "", - "line_start": 708, - "line_end": 719, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_scope_path_construction", - "name": "test_scope_path_construction", - "symbol_type": "Function", - "file_path": "", - "line_start": 722, - "line_end": 739, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_scope_path_with_enter_scope", - "name": "test_scope_path_with_enter_scope", - "symbol_type": "Function", - "file_path": "", - "line_start": 742, - "line_end": 760, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_hierarchical_scope_path_construction", - "name": "test_hierarchical_scope_path_construction", - "symbol_type": "Function", - "file_path": "", - "line_start": 763, - "line_end": 789, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_ast_query", - "name": "test_ast_query", - "symbol_type": "Function", - "file_path": "", - "line_start": 792, - "line_end": 806, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_ASTNodeType", - "name": "ASTNodeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 104, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_QueryPath", - "name": "QueryPath", - "symbol_type": "Class", - "file_path": "", - "line_start": 155, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ASTNode", - "name": "ASTNode", - "symbol_type": "Class", - "file_path": "", - "line_start": 171, - "line_end": 194, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTStatistics", - "name": "ASTStatistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 526, - "line_end": 535, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ASTBuilder", - "name": "ASTBuilder", - "symbol_type": "Class", - "file_path": "", - "line_start": 618, - "line_end": 621, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "commands.rs", - "path": "./tools/nekocode-rust/src/core/commands.rs", - "language": "rust", - "size_bytes": 2178, - "total_lines": 83, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.928606247Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_session", - "name": "with_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 38, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute", - "name": "execute", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_output", - "name": "format_output", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 76, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 80, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Command", - "name": "Command", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommandProcessor", - "name": "CommandProcessor", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommandResult", - "name": "CommandResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 58, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "config.rs", - "path": "./tools/nekocode-rust/src/core/config.rs", - "language": "rust", - "size_bytes": 4644, - "total_lines": 162, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.931889267Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 48, - "line_end": 75, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 93, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get", - "name": "get", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_set", - "name": "set", - "symbol_type": "Function", - "file_path": "", - "line_start": 99, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_show", - "name": "show", - "symbol_type": "Function", - "file_path": "", - "line_start": 141, - "line_end": 143, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 149, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_config", - "name": "load_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 155, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 159, - "line_end": 161, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Config", - "name": "Config", - "symbol_type": "Class", - "file_path": "", - "line_start": 10, - "line_end": 22, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_GeneralConfig", - "name": "GeneralConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 25, - "line_end": 30, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisConfig", - "name": "AnalysisConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 33, - "line_end": 38, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryConfig", - "name": "MemoryConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 41, - "line_end": 45, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ConfigManager", - "name": "ConfigManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 79, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "impact.rs", - "path": "./tools/nekocode-rust/src/core/impact.rs", - "language": "rust", - "size_bytes": 70028, - "total_lines": 1617, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.938457478Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_emoji", - "name": "emoji", - "symbol_type": "Function", - "file_path": "", - "line_start": 28, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 36, - "line_end": 42, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_as_str", - "name": "as_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 67, - "line_end": 78, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 148, - "line_end": 156, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 165, - "line_end": 167, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_impact", - "name": "analyze_impact", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 233, - "line_end": 233, - "column_start": 20, - "column_end": 41, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 236, - "line_end": 236, - "column_start": 17, - "column_end": 39, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_current_state", - "name": "analyze_current_state", - "symbol_type": "Function", - "file_path": "", - "line_start": 264, - "line_end": 268, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_changed_symbols", - "name": "detect_changed_symbols", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 363, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_changed_symbols_in_files", - "name": "detect_changed_symbols_in_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 366, - "line_end": 557, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 411, - "line_end": 411, - "column_start": 33, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 414, - "line_end": 414, - "column_start": 33, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 464, - "line_end": 464, - "column_start": 82, - "column_end": 109, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_symbol_references", - "name": "find_symbol_references", - "symbol_type": "Function", - "file_path": "", - "line_start": 560, - "line_end": 646, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_assess_risk_level", - "name": "assess_risk_level", - "symbol_type": "Function", - "file_path": "", - "line_start": 649, - "line_end": 665, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_identify_affected_files", - "name": "identify_affected_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 668, - "line_end": 679, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_circular_dependencies", - "name": "detect_circular_dependencies", - "symbol_type": "Function", - "file_path": "", - "line_start": 682, - "line_end": 685, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_overall_risk", - "name": "calculate_overall_risk", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 703, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 690, - "line_end": 690, - "column_start": 20, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 693, - "line_end": 693, - "column_start": 20, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_complexity_change", - "name": "calculate_complexity_change", - "symbol_type": "Function", - "file_path": "", - "line_start": 706, - "line_end": 722, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 709, - "line_end": 709, - "column_start": 21, - "column_end": 66, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_function_signature", - "name": "format_function_signature", - "symbol_type": "Function", - "file_path": "", - "line_start": 725, - "line_end": 728, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_functions_at_ref", - "name": "analyze_functions_at_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 731, - "line_end": 812, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 752, - "line_end": 752, - "column_start": 21, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 775, - "line_end": 775, - "column_start": 22, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_compare_functions_between_refs", - "name": "compare_functions_between_refs", - "symbol_type": "Function", - "file_path": "", - "line_start": 815, - "line_end": 848, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 822, - "line_end": 824, - "column_start": 20, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 823, - "line_end": 823, - "column_start": 46, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 831, - "line_end": 833, - "column_start": 20, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 832, - "line_end": 832, - "column_start": 43, - "column_end": 90, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_deleted_symbols_from_git", - "name": "detect_deleted_symbols_from_git", - "symbol_type": "Function", - "file_path": "", - "line_start": 851, - "line_end": 892, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_changed_files_from_git", - "name": "get_changed_files_from_git", - "symbol_type": "Function", - "file_path": "", - "line_start": 895, - "line_end": 985, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 920, - "line_end": 920, - "column_start": 65, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 935, - "line_end": 935, - "column_start": 21, - "column_end": 115, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 945, - "line_end": 945, - "column_start": 20, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 946, - "line_end": 964, - "column_start": 17, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 974, - "column_start": 20, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_file_at_git_ref", - "name": "analyze_file_at_git_ref", - "symbol_type": "Function", - "file_path": "", - "line_start": 988, - "line_end": 1054, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1007, - "line_end": 1007, - "column_start": 59, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1009, - "line_end": 1009, - "column_start": 21, - "column_end": 81, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_changed_files", - "name": "analyze_changed_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 1057, - "line_end": 1088, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_plain", - "name": "format_plain", - "symbol_type": "Function", - "file_path": "", - "line_start": 1096, - "line_end": 1151, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_json", - "name": "format_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1154, - "line_end": 1157, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_github_comment", - "name": "format_github_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 1160, - "line_end": 1311, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1186, - "line_end": 1186, - "column_start": 24, - "column_end": 111, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1189, - "line_end": 1189, - "column_start": 24, - "column_end": 112, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1192, - "line_end": 1192, - "column_start": 24, - "column_end": 52, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_test_analysis", - "name": "create_test_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 1321, - "line_end": 1369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_impact_config_creation", - "name": "test_impact_config_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1372, - "line_end": 1387, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_risk_level_methods", - "name": "test_risk_level_methods", - "symbol_type": "Function", - "file_path": "", - "line_start": 1390, - "line_end": 1398, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_change_type_conversion", - "name": "test_change_type_conversion", - "symbol_type": "Function", - "file_path": "", - "line_start": 1401, - "line_end": 1406, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_changed_symbol_creation", - "name": "test_changed_symbol_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 1409, - "line_end": 1426, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_detect_changed_symbols", - "name": "test_detect_changed_symbols", - "symbol_type": "Function", - "file_path": "", - "line_start": 1429, - "line_end": 1446, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1440, - "line_end": 1440, - "column_start": 17, - "column_end": 43, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1442, - "line_end": 1442, - "column_start": 17, - "column_end": 51, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_risk_assessment", - "name": "test_risk_assessment", - "symbol_type": "Function", - "file_path": "", - "line_start": 1449, - "line_end": 1491, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_output_formatter_plain", - "name": "test_output_formatter_plain", - "symbol_type": "Function", - "file_path": "", - "line_start": 1494, - "line_end": 1530, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_output_formatter_json", - "name": "test_output_formatter_json", - "symbol_type": "Function", - "file_path": "", - "line_start": 1533, - "line_end": 1561, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_output_formatter_github_comment", - "name": "test_output_formatter_github_comment", - "symbol_type": "Function", - "file_path": "", - "line_start": 1564, - "line_end": 1616, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_RiskLevel", - "name": "RiskLevel", - "symbol_type": "Class", - "file_path": "", - "line_start": 18, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeType", - "name": "ChangeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 64, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangedSymbol", - "name": "ChangedSymbol", - "symbol_type": "Class", - "file_path": "", - "line_start": 83, - "line_end": 94, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SymbolReference", - "name": "SymbolReference", - "symbol_type": "Class", - "file_path": "", - "line_start": 98, - "line_end": 103, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CircularDependency", - "name": "CircularDependency", - "symbol_type": "Class", - "file_path": "", - "line_start": 107, - "line_end": 110, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImpactAnalysisResult", - "name": "ImpactAnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 114, - "line_end": 126, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ComplexityChange", - "name": "ComplexityChange", - "symbol_type": "Class", - "file_path": "", - "line_start": 130, - "line_end": 135, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImpactConfig", - "name": "ImpactConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 139, - "line_end": 145, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImpactAnalyzer", - "name": "ImpactAnalyzer", - "symbol_type": "Class", - "file_path": "", - "line_start": 160, - "line_end": 162, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_OutputFormatter", - "name": "OutputFormatter", - "symbol_type": "Class", - "file_path": "", - "line_start": 1092, - "line_end": 1092, - "column_start": 0, - "column_end": 27, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "incremental.rs", - "path": "./tools/nekocode-rust/src/core/incremental.rs", - "language": "rust", - "size_bytes": 12837, - "total_lines": 397, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.945220051Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_path", - "name": "from_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 30, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 32, - "line_end": 32, - "column_start": 26, - "column_end": 86, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 35, - "line_end": 35, - "column_start": 26, - "column_end": 94, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 40, - "line_end": 40, - "column_start": 26, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_hash", - "name": "calculate_hash", - "symbol_type": "Function", - "file_path": "", - "line_start": 56, - "line_end": 63, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_has_changed", - "name": "has_changed", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 110, - "line_end": 116, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_initialize", - "name": "initialize", - "symbol_type": "Function", - "file_path": "", - "line_start": 119, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 125, - "line_end": 125, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_changes", - "name": "detect_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 216, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 158, - "line_end": 158, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_source_file", - "name": "is_source_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 234, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 220, - "line_end": 220, - "column_start": 59, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_file_count", - "name": "file_count", - "symbol_type": "Function", - "file_path": "", - "line_start": 237, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_last_scan_time", - "name": "last_scan_time", - "symbol_type": "Function", - "file_path": "", - "line_start": 242, - "line_end": 244, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_base_path", - "name": "base_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 247, - "line_end": 249, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 271, - "line_end": 301, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 278, - "line_end": 278, - "column_start": 20, - "column_end": 61, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 281, - "column_start": 20, - "column_end": 58, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 284, - "line_end": 284, - "column_start": 20, - "column_end": 60, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_format_summary", - "name": "format_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 317, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_file_metadata_creation", - "name": "test_file_metadata_creation", - "symbol_type": "Function", - "file_path": "", - "line_start": 327, - "line_end": 337, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_change_detection", - "name": "test_change_detection", - "symbol_type": "Function", - "file_path": "", - "line_start": 340, - "line_end": 369, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_incremental_summary", - "name": "test_incremental_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 372, - "line_end": 396, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_FileMetadata", - "name": "FileMetadata", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 26, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeType", - "name": "ChangeType", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 82, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileChange", - "name": "FileChange", - "symbol_type": "Class", - "file_path": "", - "line_start": 86, - "line_end": 95, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ChangeDetector", - "name": "ChangeDetector", - "symbol_type": "Class", - "file_path": "", - "line_start": 99, - "line_end": 106, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_IncrementalSummary", - "name": "IncrementalSummary", - "symbol_type": "Class", - "file_path": "", - "line_start": 254, - "line_end": 267, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "memory.rs", - "path": "./tools/nekocode-rust/src/core/memory.rs", - "language": "rust", - "size_bytes": 9192, - "total_lines": 280, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.949343722Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_str", - "name": "from_str", - "symbol_type": "Function", - "file_path": "", - "line_start": 29, - "line_end": 37, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 41, - "line_end": 48, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 64, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 92, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save", - "name": "save", - "symbol_type": "Function", - "file_path": "", - "line_start": 95, - "line_end": 106, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load", - "name": "load", - "symbol_type": "Function", - "file_path": "", - "line_start": 109, - "line_end": 120, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list", - "name": "list", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 139, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 136, - "line_end": 136, - "column_start": 32, - "column_end": 70, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_timeline", - "name": "timeline", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 147, - "line_end": 147, - "column_start": 23, - "column_end": 57, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 150, - "column_start": 24, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_search", - "name": "search", - "symbol_type": "Function", - "file_path": "", - "line_start": 156, - "line_end": 169, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_stats", - "name": "stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 172, - "line_end": 200, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_cleanup", - "name": "cleanup", - "symbol_type": "Function", - "file_path": "", - "line_start": 203, - "line_end": 221, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_by_type", - "name": "list_by_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 248, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 235, - "line_end": 235, - "column_start": 41, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 245, - "line_end": 245, - "column_start": 24, - "column_end": 62, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_fmt", - "name": "fmt", - "symbol_type": "Function", - "file_path": "", - "line_start": 262, - "line_end": 279, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MemoryType", - "name": "MemoryType", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 24, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryEntry", - "name": "MemoryEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 53, - "line_end": 61, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryManager", - "name": "MemoryManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 83, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemoryStats", - "name": "MemoryStats", - "symbol_type": "Class", - "file_path": "", - "line_start": 253, - "line_end": 259, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "mod.rs", - "path": "./tools/nekocode-rust/src/core/mod.rs", - "language": "rust", - "size_bytes": 167, - "total_lines": 10, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.953726780Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "moveclass.rs", - "path": "./tools/nekocode-rust/src/core/moveclass.rs", - "language": "rust", - "size_bytes": 6043, - "total_lines": 186, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.956893936Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 26, - "line_end": 34, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 67, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_error", - "name": "with_error", - "symbol_type": "Function", - "file_path": "", - "line_start": 69, - "line_end": 73, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 86, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_options", - "name": "with_options", - "symbol_type": "Function", - "file_path": "", - "line_start": 88, - "line_end": 90, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_preview_move", - "name": "preview_move", - "symbol_type": "Function", - "file_path": "", - "line_start": 93, - "line_end": 113, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_move_class", - "name": "move_class", - "symbol_type": "Function", - "file_path": "", - "line_start": 116, - "line_end": 142, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_class_boundaries", - "name": "find_class_boundaries", - "symbol_type": "Function", - "file_path": "", - "line_start": 145, - "line_end": 172, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_adjust_imports", - "name": "adjust_imports", - "symbol_type": "Function", - "file_path": "", - "line_start": 175, - "line_end": 179, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 183, - "line_end": 185, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_MoveOptions", - "name": "MoveOptions", - "symbol_type": "Class", - "file_path": "", - "line_start": 12, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MoveResult", - "name": "MoveResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 39, - "line_end": 54, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MoveClassEngine", - "name": "MoveClassEngine", - "symbol_type": "Class", - "file_path": "", - "line_start": 77, - "line_end": 79, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "preview.rs", - "path": "./tools/nekocode-rust/src/core/preview.rs", - "language": "rust", - "size_bytes": 15898, - "total_lines": 427, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.961498847Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 66, - "line_end": 77, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_generate_preview", - "name": "generate_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 79, - "line_end": 132, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 143, - "line_end": 164, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 154, - "line_end": 154, - "column_start": 58, - "column_end": 76, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_to_storage", - "name": "save_to_storage", - "symbol_type": "Function", - "file_path": "", - "line_start": 167, - "line_end": 171, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_replace_preview", - "name": "create_replace_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 174, - "line_end": 191, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_insert_preview", - "name": "create_insert_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 194, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_movelines_preview", - "name": "create_movelines_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 210, - "line_end": 241, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 223, - "line_end": 223, - "column_start": 17, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_moveclass_preview", - "name": "create_moveclass_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 244, - "line_end": 273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_preview", - "name": "get_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 276, - "line_end": 278, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_confirm_preview", - "name": "confirm_preview", - "symbol_type": "Function", - "file_path": "", - "line_start": 281, - "line_end": 304, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 285, - "line_end": 285, - "column_start": 28, - "column_end": 75, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_operation", - "name": "execute_operation", - "symbol_type": "Function", - "file_path": "", - "line_start": 306, - "line_end": 399, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 342, - "column_start": 25, - "column_end": 42, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_matches", - "name": "find_matches", - "symbol_type": "Function", - "file_path": "", - "line_start": 401, - "line_end": 420, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 426, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_PreviewOperation", - "name": "PreviewOperation", - "symbol_type": "Class", - "file_path": "", - "line_start": 17, - "line_end": 43, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MatchInfo", - "name": "MatchInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 47, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PreviewEntry", - "name": "PreviewEntry", - "symbol_type": "Class", - "file_path": "", - "line_start": 57, - "line_end": 63, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_PreviewManager", - "name": "PreviewManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 136, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "session.rs", - "path": "./tools/nekocode-rust/src/core/session.rs", - "language": "rust", - "size_bytes": 54511, - "total_lines": 1284, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.968195828Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 51, - "line_end": 70, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 57, - "column_start": 30, - "column_end": 105, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_sessions_from_disk", - "name": "load_sessions_from_disk", - "symbol_type": "Function", - "file_path": "", - "line_start": 73, - "line_end": 97, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 82, - "line_end": 82, - "column_start": 41, - "column_end": 55, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 83, - "line_end": 83, - "column_start": 68, - "column_end": 82, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_load_session_info", - "name": "load_session_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 100, - "line_end": 109, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 103, - "column_start": 26, - "column_end": 95, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 106, - "line_end": 106, - "column_start": 26, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_save_session_info", - "name": "save_session_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 112, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 115, - "line_end": 115, - "column_start": 26, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 118, - "line_end": 118, - "column_start": 26, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_create_session", - "name": "create_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 160, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_combined_ast_stats", - "name": "calculate_combined_ast_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 190, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session", - "name": "get_session", - "symbol_type": "Function", - "file_path": "", - "line_start": 192, - "line_end": 203, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_session_info", - "name": "get_session_info", - "symbol_type": "Function", - "file_path": "", - "line_start": 205, - "line_end": 207, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_list_sessions", - "name": "list_sessions", - "symbol_type": "Function", - "file_path": "", - "line_start": 209, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_session_incremental", - "name": "update_session_incremental", - "symbol_type": "Function", - "file_path": "", - "line_start": 214, - "line_end": 318, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 219, - "line_end": 219, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 249, - "line_end": 249, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 266, - "line_end": 272, - "column_start": 55, - "column_end": 33, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 286, - "line_end": 292, - "column_start": 43, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_ast_stats", - "name": "handle_ast_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 323, - "line_end": 355, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 325, - "line_end": 325, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_ast_query", - "name": "handle_ast_query", - "symbol_type": "Function", - "file_path": "", - "line_start": 358, - "line_end": 388, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 360, - "line_end": 360, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_scope_analysis", - "name": "handle_scope_analysis", - "symbol_type": "Function", - "file_path": "", - "line_start": 391, - "line_end": 421, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 393, - "line_end": 393, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_handle_ast_dump", - "name": "handle_ast_dump", - "symbol_type": "Function", - "file_path": "", - "line_start": 424, - "line_end": 456, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 426, - "line_end": 426, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_session_stats", - "name": "calculate_session_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 459, - "line_end": 504, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_session_complexity", - "name": "calculate_session_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 507, - "line_end": 570, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_calculate_session_structure", - "name": "calculate_session_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 573, - "line_end": 624, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 579, - "line_end": 584, - "column_start": 82, - "column_end": 14, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 602, - "line_end": 606, - "column_start": 82, - "column_end": 18, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_session_symbols", - "name": "find_session_symbols", - "symbol_type": "Function", - "file_path": "", - "line_start": 627, - "line_end": 685, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_search_ast_nodes", - "name": "search_ast_nodes", - "symbol_type": "Function", - "file_path": "", - "line_start": 688, - "line_end": 702, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_session_include_cycles", - "name": "find_session_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 705, - "line_end": 743, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_detect_cycle_dfs", - "name": "detect_cycle_dfs", - "symbol_type": "Function", - "file_path": "", - "line_start": 746, - "line_end": 771, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_resolve_import_path", - "name": "resolve_import_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 774, - "line_end": 914, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_execute_session_command", - "name": "execute_session_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 916, - "line_end": 945, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 919, - "line_end": 919, - "column_start": 24, - "column_end": 79, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 954, - "line_end": 958, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_with_config", - "name": "with_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 960, - "line_end": 962, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_path", - "name": "analyze_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 965, - "line_end": 975, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_single_file", - "name": "analyze_single_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 978, - "line_end": 990, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 980, - "line_end": 980, - "column_start": 46, - "column_end": 63, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 984, - "line_end": 984, - "column_start": 26, - "column_end": 87, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_directory", - "name": "analyze_directory", - "symbol_type": "Function", - "file_path": "", - "line_start": 993, - "line_end": 1072, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1023, - "line_end": 1039, - "column_start": 68, - "column_end": 13, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1025, - "line_end": 1038, - "column_start": 44, - "column_end": 17, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1045, - "line_end": 1045, - "column_start": 71, - "column_end": 116, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_discover_files", - "name": "discover_files", - "symbol_type": "Function", - "file_path": "", - "line_start": 1075, - "line_end": 1111, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1081, - "line_end": 1081, - "column_start": 24, - "column_end": 34, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1096, - "line_end": 1096, - "column_start": 63, - "column_end": 77, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_should_exclude_path", - "name": "should_exclude_path", - "symbol_type": "Function", - "file_path": "", - "line_start": 1114, - "line_end": 1124, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_is_test_file", - "name": "is_test_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 1127, - "line_end": 1147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1129, - "line_end": 1129, - "column_start": 22, - "column_end": 36, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_analyze_file", - "name": "analyze_file", - "symbol_type": "Function", - "file_path": "", - "line_start": 1150, - "line_end": 1256, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1153, - "line_end": 1153, - "column_start": 26, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1157, - "line_end": 1157, - "column_start": 26, - "column_end": 91, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1182, - "line_end": 1182, - "column_start": 79, - "column_end": 93, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1196, - "line_end": 1196, - "column_start": 29, - "column_end": 96, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1204, - "line_end": 1204, - "column_start": 29, - "column_end": 103, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1212, - "line_end": 1212, - "column_start": 29, - "column_end": 100, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1220, - "line_end": 1220, - "column_start": 29, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1228, - "line_end": 1228, - "column_start": 29, - "column_end": 99, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1236, - "line_end": 1236, - "column_start": 29, - "column_end": 101, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_stats", - "name": "get_stats", - "symbol_type": "Function", - "file_path": "", - "line_start": 1259, - "line_end": 1261, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_complexity", - "name": "get_complexity", - "symbol_type": "Function", - "file_path": "", - "line_start": 1263, - "line_end": 1265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_structure", - "name": "get_structure", - "symbol_type": "Function", - "file_path": "", - "line_start": 1267, - "line_end": 1269, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_symbols", - "name": "find_symbols", - "symbol_type": "Function", - "file_path": "", - "line_start": 1271, - "line_end": 1273, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_include_cycles", - "name": "find_include_cycles", - "symbol_type": "Function", - "file_path": "", - "line_start": 1275, - "line_end": 1277, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 1281, - "line_end": 1283, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_SessionInfo", - "name": "SessionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 37, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_SessionManager", - "name": "SessionManager", - "symbol_type": "Class", - "file_path": "", - "line_start": 43, - "line_end": 47, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisSession", - "name": "AnalysisSession", - "symbol_type": "Class", - "file_path": "", - "line_start": 949, - "line_end": 951, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "types.rs", - "path": "./tools/nekocode-rust/src/core/types.rs", - "language": "rust", - "size_bytes": 18509, - "total_lines": 632, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.974756115Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_from_extension", - "name": "from_extension", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 49, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 68, - "line_end": 84, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 71, - "line_end": 71, - "column_start": 26, - "column_end": 40, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 111, - "line_end": 121, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_rating", - "name": "update_rating", - "symbol_type": "Function", - "file_path": "", - "line_start": 123, - "line_end": 138, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_to_string", - "name": "to_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 147, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 151, - "line_end": 153, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 170, - "line_end": 181, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 199, - "line_end": 211, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 239, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 299, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 322, - "line_end": 329, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 342, - "line_end": 349, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_full_name", - "name": "full_name", - "symbol_type": "Function", - "file_path": "", - "line_start": 351, - "line_end": 361, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 376, - "line_end": 384, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 400, - "line_end": 410, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 453, - "line_end": 471, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_statistics", - "name": "update_statistics", - "symbol_type": "Function", - "file_path": "", - "line_start": 473, - "line_end": 481, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 514, - "line_end": 528, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_new", - "name": "new", - "symbol_type": "Function", - "file_path": "", - "line_start": 532, - "line_end": 539, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_update_summary", - "name": "update_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 541, - "line_end": 574, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_default", - "name": "default", - "symbol_type": "Function", - "file_path": "", - "line_start": 596, - "line_end": 631, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Language", - "name": "Language", - "symbol_type": "Class", - "file_path": "", - "line_start": 15, - "line_end": 34, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FileInfo", - "name": "FileInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 54, - "line_end": 65, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ComplexityRating", - "name": "ComplexityRating", - "symbol_type": "Class", - "file_path": "", - "line_start": 89, - "line_end": 98, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ComplexityInfo", - "name": "ComplexityInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 102, - "line_end": 108, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionInfo", - "name": "FunctionInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 158, - "line_end": 167, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_MemberVariable", - "name": "MemberVariable", - "symbol_type": "Class", - "file_path": "", - "line_start": 186, - "line_end": 196, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ClassInfo", - "name": "ClassInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 216, - "line_end": 225, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImportType", - "name": "ImportType", - "symbol_type": "Class", - "file_path": "", - "line_start": 244, - "line_end": 263, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExportType", - "name": "ExportType", - "symbol_type": "Class", - "file_path": "", - "line_start": 267, - "line_end": 284, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ImportInfo", - "name": "ImportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 288, - "line_end": 296, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_ExportInfo", - "name": "ExportInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 313, - "line_end": 319, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_FunctionCall", - "name": "FunctionCall", - "symbol_type": "Class", - "file_path": "", - "line_start": 334, - "line_end": 339, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_CommentInfo", - "name": "CommentInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 366, - "line_end": 373, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_Statistics", - "name": "Statistics", - "symbol_type": "Class", - "file_path": "", - "line_start": 389, - "line_end": 397, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisResult", - "name": "AnalysisResult", - "symbol_type": "Class", - "file_path": "", - "line_start": 415, - "line_end": 450, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DirectoryAnalysis", - "name": "DirectoryAnalysis", - "symbol_type": "Class", - "file_path": "", - "line_start": 486, - "line_end": 491, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_DirectorySummary", - "name": "DirectorySummary", - "symbol_type": "Class", - "file_path": "", - "line_start": 495, - "line_end": 511, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_AnalysisConfig", - "name": "AnalysisConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 579, - "line_end": 593, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "lib.rs", - "path": "./tools/nekocode-rust/src/lib.rs", - "language": "rust", - "size_bytes": 493, - "total_lines": 14, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.979139510Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/nekocode-rust/src/main.rs", - "language": "rust", - "size_bytes": 26294, - "total_lines": 786, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.983720396Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_extract_summary", - "name": "extract_summary", - "symbol_type": "Function", - "file_path": "", - "line_start": 394, - "line_end": 442, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 435, - "line_end": 435, - "column_start": 29, - "column_end": 49, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 444, - "line_end": 459, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_async_main", - "name": "async_main", - "symbol_type": "Function", - "file_path": "", - "line_start": 461, - "line_end": 786, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 700, - "line_end": 706, - "column_start": 57, - "column_end": 21, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_Cli", - "name": "Cli", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 23, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 26, - "line_end": 327, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_MemoryOperation", - "name": "MemoryOperation", - "symbol_type": "Class", - "file_path": "", - "line_start": 330, - "line_end": 374, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ConfigOperation", - "name": "ConfigOperation", - "symbol_type": "Class", - "file_path": "", - "line_start": 377, - "line_end": 391, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "incremental_tests.rs", - "path": "./tools/nekocode-rust/tests/incremental_tests.rs", - "language": "rust", - "size_bytes": 13551, - "total_lines": 341, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.990238504Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_change_detection_basic", - "name": "test_change_detection_basic", - "symbol_type": "Function", - "file_path": "", - "line_start": 18, - "line_end": 53, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_change_detection_multiple_languages", - "name": "test_change_detection_multiple_languages", - "symbol_type": "Function", - "file_path": "", - "line_start": 57, - "line_end": 82, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_no_changes", - "name": "test_session_update_no_changes", - "symbol_type": "Function", - "file_path": "", - "line_start": 86, - "line_end": 104, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_with_modifications", - "name": "test_session_update_with_modifications", - "symbol_type": "Function", - "file_path": "", - "line_start": 108, - "line_end": 131, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_with_additions", - "name": "test_session_update_with_additions", - "symbol_type": "Function", - "file_path": "", - "line_start": 135, - "line_end": 159, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_with_deletions", - "name": "test_session_update_with_deletions", - "symbol_type": "Function", - "file_path": "", - "line_start": 163, - "line_end": 189, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_cli_session_update_command", - "name": "test_cli_session_update_command", - "symbol_type": "Function", - "file_path": "", - "line_start": 193, - "line_end": 214, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_dry_run", - "name": "test_session_update_dry_run", - "symbol_type": "Function", - "file_path": "", - "line_start": 218, - "line_end": 242, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_session_update_verbose", - "name": "test_session_update_verbose", - "symbol_type": "Function", - "file_path": "", - "line_start": 246, - "line_end": 265, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_performance_improvement", - "name": "test_performance_improvement", - "symbol_type": "Function", - "file_path": "", - "line_start": 269, - "line_end": 300, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_invalid_session_id", - "name": "test_invalid_session_id", - "symbol_type": "Function", - "file_path": "", - "line_start": 304, - "line_end": 308, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_incremental_summary_formatting", - "name": "test_incremental_summary_formatting", - "symbol_type": "Function", - "file_path": "", - "line_start": 312, - "line_end": 320, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_backward_compatibility", - "name": "test_backward_compatibility", - "symbol_type": "Function", - "file_path": "", - "line_start": 324, - "line_end": 340, - "column_start": 4, - "column_end": 5, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main.rs", - "path": "./tools/plugin-tester/src/main.rs", - "language": "rust", - "size_bytes": 18878, - "total_lines": 500, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:00.998951628Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_default_abi_version", - "name": "default_abi_version", - "symbol_type": "Function", - "file_path": "", - "line_start": 37, - "line_end": 37, - "column_start": 0, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_empty", - "name": "tlv_encode_empty", - "symbol_type": "Function", - "file_path": "", - "line_start": 85, - "line_end": 87, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_one_handle", - "name": "tlv_encode_one_handle", - "symbol_type": "Function", - "file_path": "", - "line_start": 89, - "line_end": 101, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_two_strings", - "name": "tlv_encode_two_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 103, - "line_end": 118, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_bytes", - "name": "tlv_encode_bytes", - "symbol_type": "Function", - "file_path": "", - "line_start": 120, - "line_end": 128, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_decode_u32", - "name": "tlv_decode_u32", - "symbol_type": "Function", - "file_path": "", - "line_start": 130, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 140, - "line_end": 148, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_v2", - "name": "check_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 150, - "line_end": 254, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_lifecycle_v2", - "name": "test_lifecycle_v2", - "symbol_type": "Function", - "file_path": "", - "line_start": 256, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_validate_all", - "name": "validate_all", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 484, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_find_library_for_box", - "name": "find_library_for_box", - "symbol_type": "Function", - "file_path": "", - "line_start": 488, - "line_end": 492, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 490, - "line_end": 490, - "column_start": 14, - "column_end": 66, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 491, - "line_end": 491, - "column_start": 13, - "column_end": 47, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_get_box_config", - "name": "get_box_config", - "symbol_type": "Function", - "file_path": "", - "line_start": 494, - "line_end": 500, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 497, - "line_end": 497, - "column_start": 18, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 498, - "line_end": 498, - "column_start": 18, - "column_end": 37, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 499, - "line_end": 499, - "column_start": 18, - "column_end": 64, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashConfigV2", - "name": "NyashConfigV2", - "symbol_type": "Class", - "file_path": "", - "line_start": 19, - "line_end": 21, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_LibraryDefinition", - "name": "LibraryDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 24, - "line_end": 27, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_BoxTypeConfig", - "name": "BoxTypeConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 30, - "line_end": 35, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_MethodDefinition", - "name": "MethodDefinition", - "symbol_type": "Class", - "file_path": "", - "line_start": 40, - "line_end": 42, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Args", - "name": "Args", - "symbol_type": "Class", - "file_path": "", - "line_start": 49, - "line_end": 52, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 55, - "line_end": 81, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "main_old.rs", - "path": "./tools/plugin-tester/src/main_old.rs", - "language": "rust", - "size_bytes": 26810, - "total_lines": 788, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:01.004904044Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "rust_func_test_alloc", - "name": "test_alloc", - "symbol_type": "Function", - "file_path": "", - "line_start": 127, - "line_end": 130, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_free", - "name": "test_free", - "symbol_type": "Function", - "file_path": "", - "line_start": 132, - "line_end": 136, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_wake", - "name": "test_wake", - "symbol_type": "Function", - "file_path": "", - "line_start": 138, - "line_end": 140, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_log", - "name": "test_log", - "symbol_type": "Function", - "file_path": "", - "line_start": 142, - "line_end": 155, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_main", - "name": "main", - "symbol_type": "Function", - "file_path": "", - "line_start": 166, - "line_end": 182, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_string", - "name": "tlv_encode_string", - "symbol_type": "Function", - "file_path": "", - "line_start": 196, - "line_end": 210, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_encode_two_strings", - "name": "tlv_encode_two_strings", - "symbol_type": "Function", - "file_path": "", - "line_start": 212, - "line_end": 226, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_tlv_decode_i32", - "name": "tlv_decode_i32", - "symbol_type": "Function", - "file_path": "", - "line_start": 228, - "line_end": 246, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_plugin", - "name": "check_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 250, - "line_end": 351, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_check_multi_box_plugin", - "name": "check_multi_box_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 355, - "line_end": 479, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_lifecycle", - "name": "test_lifecycle", - "symbol_type": "Function", - "file_path": "", - "line_start": 481, - "line_end": 604, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_file_operations", - "name": "test_file_operations", - "symbol_type": "Function", - "file_path": "", - "line_start": 606, - "line_end": 637, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_file_io", - "name": "test_file_io", - "symbol_type": "Function", - "file_path": "", - "line_start": 639, - "line_end": 643, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_test_tlv_debug", - "name": "test_tlv_debug", - "symbol_type": "Function", - "file_path": "", - "line_start": 645, - "line_end": 672, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_typecheck_plugin", - "name": "typecheck_plugin", - "symbol_type": "Function", - "file_path": "", - "line_start": 674, - "line_end": 788, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 732, - "line_end": 732, - "column_start": 68, - "column_end": 84, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 733, - "line_end": 733, - "column_start": 71, - "column_end": 85, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 739, - "line_end": 739, - "column_start": 30, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 740, - "line_end": 740, - "column_start": 30, - "column_end": 50, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 741, - "line_end": 741, - "column_start": 30, - "column_end": 46, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - }, - { - "symbol": { - "id": "rust_func_closure", - "name": "closure", - "symbol_type": "Function", - "file_path": "", - "line_start": 749, - "line_end": 755, - "column_start": 40, - "column_end": 29, - "language": "rust", - "visibility": "Private", - "parent_id": null, - "metadata": {} - }, - "parameters": [], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": false, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "rust_type_NyashHostVtable", - "name": "NyashHostVtable", - "symbol_type": "Class", - "file_path": "", - "line_start": 20, - "line_end": 25, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashMethodInfo", - "name": "NyashMethodInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 28, - "line_end": 32, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashPluginInfo", - "name": "NyashPluginInfo", - "symbol_type": "Class", - "file_path": "", - "line_start": 35, - "line_end": 40, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - }, - { - "symbol": { - "id": "rust_type_NyashConfig", - "name": "NyashConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 45, - "line_end": 48, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_PluginConfig", - "name": "PluginConfig", - "symbol_type": "Class", - "file_path": "", - "line_start": 51, - "line_end": 53, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_MethodDef", - "name": "MethodDef", - "symbol_type": "Class", - "file_path": "", - "line_start": 56, - "line_end": 60, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_ArgDef", - "name": "ArgDef", - "symbol_type": "Class", - "file_path": "", - "line_start": 63, - "line_end": 68, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Args", - "name": "Args", - "symbol_type": "Class", - "file_path": "", - "line_start": 75, - "line_end": 78, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Commands", - "name": "Commands", - "symbol_type": "Class", - "file_path": "", - "line_start": 81, - "line_end": 123, - "column_start": 0, - "column_end": 1, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_TlvHeader", - "name": "TlvHeader", - "symbol_type": "Class", - "file_path": "", - "line_start": 188, - "line_end": 188, - "column_start": 0, - "column_end": 44, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - }, - { - "symbol": { - "id": "rust_type_Tag", - "name": "Tag", - "symbol_type": "Class", - "file_path": "", - "line_start": 194, - "line_end": 194, - "column_start": 0, - "column_end": 84, - "language": "rust", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": false - } - ], - "imports": [], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - }, - { - "file_info": { - "name": "server.py", - "path": "./wasm_demo/server.py", - "language": "python", - "size_bytes": 1429, - "total_lines": 46, - "code_lines": 0, - "comment_lines": 0, - "empty_lines": 0, - "code_ratio": 0.0, - "analyzed_at": "2025-08-25T08:01:01.640731836Z", - "hash": null, - "metadata": {} - }, - "symbols": [], - "functions": [ - { - "symbol": { - "id": "python_func_end_headers", - "name": "end_headers", - "symbol_type": "Function", - "file_path": "", - "line_start": 12, - "line_end": 17, - "column_start": 4, - "column_end": 29, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - }, - { - "symbol": { - "id": "python_func_guess_type", - "name": "guess_type", - "symbol_type": "Function", - "file_path": "", - "line_start": 19, - "line_end": 29, - "column_start": 4, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "parameters": [ - { - "name": "self", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - }, - { - "name": "path", - "param_type": null, - "default_value": null, - "is_optional": false, - "is_variadic": false - } - ], - "return_type": null, - "is_async": false, - "is_static": false, - "is_generic": false, - "is_public": true, - "complexity": null - } - ], - "classes": [ - { - "symbol": { - "id": "python_class_WASMHTTPRequestHandler", - "name": "WASMHTTPRequestHandler", - "symbol_type": "Class", - "file_path": "", - "line_start": 11, - "line_end": 29, - "column_start": 0, - "column_end": 23, - "language": "python", - "visibility": "Public", - "parent_id": null, - "metadata": {} - }, - "base_classes": [], - "interfaces": [], - "methods": [ - "end_headers", - "guess_type" - ], - "fields": [], - "is_abstract": false, - "is_interface": false, - "is_public": true - } - ], - "imports": [ - { - "module": "http.server", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 7 - }, - { - "module": "socketserver", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 8 - }, - { - "module": "os", - "imported_names": [], - "alias": null, - "is_default": false, - "is_namespace": false, - "line": 9 - } - ], - "exports": [], - "dependencies": [], - "metrics": { - "lines_of_code": 0, - "lines_with_comments": 0, - "blank_lines": 0, - "cyclomatic_complexity": null, - "halstead_volume": null, - "maintainability_index": null - }, - "errors": [] - } -] \ No newline at end of file diff --git a/nyash_design_consultation.txt b/nyash_design_consultation.txt deleted file mode 100644 index 2d4198b1..00000000 --- a/nyash_design_consultation.txt +++ /dev/null @@ -1,96 +0,0 @@ -Nyashプログラミング言語ã®çµ±ä¸€Box設計ã«ã¤ã„ã¦ç›¸è«‡ - -ã€èƒŒæ™¯ã€‘ -Nyashã¯ã€ŒEverything is Boxã€å“²å­¦ã‚’æŒã¤ãƒ—ログラミング言語ã§ã™ã€‚ç¾åœ¨ã€ä»¥ä¸‹ã®3種類ã®BoxãŒå­˜åœ¨ã—ã¾ã™ï¼š - -1. ビルトインBox(StringBox, IntegerBox等)- Rustã§å®Ÿè£… -2. プラグインBox(FileBox等)- å‹•çš„ãƒ©ã‚¤ãƒ–ãƒ©ãƒªã§æä¾› -3. ユーザー定義Box(box Person等)- Nyashコードã§å®šç¾© - -ã€ç¾åœ¨ã®çµ±ä¸€ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã€‘ -``` -UnifiedBoxRegistry(統一レジストリ) -├── BuiltinBoxFactory(優先度1) -├── UserDefinedBoxFactory(優先度2) -└── PluginBoxFactory(優先度3) -``` - -BoxFactoryトレイト: -```rust -pub trait BoxFactory: Send + Sync { - fn create_box(&self, name: &str, args: &[Box]) -> Result, RuntimeError>; - fn box_types(&self) -> Vec<&str>; - fn supports_birth(&self) -> bool; -} -``` - -ã€çµ±ä¸€ã®ç¾Žã—ã•】 -1. é€éŽçš„ãªç½®ãæ›ãˆ - åŒã˜åå‰ã®Boxをプラグインã§ä¸Šæ›¸ãå¯èƒ½ -2. 統一インターフェース - ã™ã¹ã¦ã®BoxãŒåŒã˜APIã‚’æŒã¤ -3. 優先順ä½ã‚·ã‚¹ãƒ†ãƒ  - ビルトイン > ユーザー定義 > プラグイン - -ã€InstanceBoxã«ã‚ˆã‚‹çµ±ä¸€å®Ÿè£…】 -```rust -pub struct InstanceBox { - pub class_name: String, // "StringBox", "Person"ç­‰ - pub inner_content: Option>, // 内包Box(統一ï¼ï¼‰ - pub fields_ng: Arc>>, - pub methods: Arc>, -} - -// 3ã¤ã®å½¢æ…‹ã‚’統一 -InstanceBox::from_any_box("StringBox", Box::new(StringBox::new("hello"))) // ビルトイン -InstanceBox::from_any_box("FileBox", plugin_box) // プラグイン -InstanceBox::from_declaration("Person", fields, methods) // ユーザー定義 -``` - -ã€æ¤œè¨Žäº‹é …】 - -1. **基本メソッドã®çµ±ä¸€** -ç¾åœ¨ã€å„Boxã§å€‹åˆ¥å®Ÿè£…ã•れã¦ã„る基本メソッド(toString, type, equals等)をNyashBoxトレイトã®ãƒ‡ãƒ•ォルト実装ã¨ã—ã¦çµ±ä¸€ã—ãŸã„。 - -```rust -pub trait NyashBox: BoxCore + Debug { - // Nyash標準メソッド(デフォルト実装) - fn toString(&self) -> Box { - Box::new(StringBox::new(&self.to_string_box().value)) - } - fn type(&self) -> Box { - Box::new(StringBox::new(self.type_name())) - } - fn equals(&self, other: Box) -> Box { - Box::new(BoolBox::new(self.equals_internal(other.as_ref()))) - } -} -``` - -2. **ユーザー定義Boxã®å®Œå…¨çµ±ä¸€** -ユーザー定義Boxã‚‚ã€ãƒ“ルトイン/プラグインBoxã¨åŒã˜ã‚ˆã†ã«æ‰±ãˆã‚‹ã‚ˆã†ã«ã—ãŸã„。継承も統一的ã«ï¼š - -```nyash -box MyString from StringBox { } // ビルトイン継承 -box MyFile from FileBox { } // プラグイン継承 -box Employee from Person { } // ユーザー定義継承 -``` - -3. **å‹•çš„ãªåˆ‡ã‚Šæ›¿ãˆ** -実行時ã«ãƒ“ルトインBoxをプラグインBoxã§ç½®ãæ›ãˆã‚‹æ©Ÿèƒ½ã¯æ—¢ã«å®Ÿè£…済ã¿ã€‚ã“れをã•ã‚‰ã«æ´—ç·´ã•ã›ãŸã„。 - -ã€è³ªå•】 - -1. ã“ã®çµ±ä¸€è¨­è¨ˆã¯ç¾Žã—ã„ã¨æ€ã„ã¾ã™ã‹ï¼Ÿãれã¨ã‚‚éŽåº¦ã«è¤‡é›‘ã§ã—ょã†ã‹ï¼Ÿ - -2. 基本メソッド(toString, type, equals, clone)をトレイトã®ãƒ‡ãƒ•ォルト実装ã«ã™ã‚‹ã“ã¨ã§ã€ã™ã¹ã¦ã®Boxã§çµ±ä¸€çš„ã«ä½¿ãˆã‚‹ã‚ˆã†ã«ã™ã‚‹æ¡ˆã«ã¤ã„ã¦ã©ã†æ€ã„ã¾ã™ã‹ï¼Ÿ - -3. ユーザー定義Boxã‚’ã€ãƒ“ルトイン/プラグインBoxã¨å®Œå…¨ã«åŒã˜ãƒ¬ãƒ™ãƒ«ã§æ‰±ã†ã“ã¨ã¯ã€è¨­è¨ˆã¨ã—ã¦è‡ªç„¶ã§ã—ょã†ã‹ï¼Ÿãれã¨ã‚‚強引ã§ã—ょã†ã‹ï¼Ÿ - -4. ã•らã«è¨­è¨ˆã‚’美ã—ãã™ã‚‹ãŸã‚ã®ã‚¢ã‚¤ãƒ‡ã‚¢ã¯ã‚りã¾ã™ã‹ï¼Ÿä¾‹ãˆã°ï¼š - - パイプライン演算å­ï¼ˆ|>)ã®å°Žå…¥ - - ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã‚·ã‚¹ãƒ†ãƒ ã®æ•´ç† - - BoxéšŽå±¤ã®æ•´ç†ï¼ˆValueBox, ContainerBox, IOBox等) - -5. ä»–ã®ãƒ—ログラミング言語(Ruby, Python, Smalltalk等)ã®çµ±ä¸€ã‚ªãƒ–ã‚¸ã‚§ã‚¯ãƒˆã‚·ã‚¹ãƒ†ãƒ ã¨æ¯”較ã—ã¦ã€ã“ã®è¨­è¨ˆã®è‰¯ã„点・改善点ã¯ä½•ã§ã—ょã†ã‹ï¼Ÿ - -6. パフォーマンスã¨ç¾Žã—ã•ã®ãƒˆãƒ¬ãƒ¼ãƒ‰ã‚ªãƒ•ã«ã¤ã„ã¦ã€ã©ã®ã‚ˆã†ãªãƒãƒ©ãƒ³ã‚¹ãŒè‰¯ã„ã¨æ€ã„ã¾ã™ã‹ï¼Ÿ - -プログラミング言語設計ã®å°‚門的観点ã‹ã‚‰ã€å®Ÿè£…ã®ç¾å®Ÿæ€§ã‚‚考慮ã—ã¤ã¤ã€ã‚ˆã‚Šç¾Žã—ã„設計ã¸ã®é“筋をアドãƒã‚¤ã‚¹ã—ã¦ãã ã•ã„。 \ No newline at end of file diff --git a/out.txt b/out.txt deleted file mode 100644 index 9ead3720..00000000 --- a/out.txt +++ /dev/null @@ -1,3 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/simple_loop_test.nyash 🚀 diff --git a/src/backend/control_flow.rs b/src/backend/control_flow.rs new file mode 100644 index 00000000..db6cb4b0 --- /dev/null +++ b/src/backend/control_flow.rs @@ -0,0 +1,33 @@ +/*! + * VM Control-Flow helpers (scaffolding) + * + * Purpose: Encapsulate block transitions, branching decisions, and phi entry bookkeeping. + * Status: Initial skeleton for future extraction from vm.rs + */ + +use crate::mir::BasicBlockId; +use super::vm::{VMError}; + +/// Result of a block step when evaluating a terminator +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum Step { + /// Continue in the same block (advance pc) + Continue, + /// Jump to target block + Jump(BasicBlockId), + /// Function returned (handled by VM) + Return, +} + +/// Record a block transition inside VM bookkeeping +pub fn record_transition( + previous_block: &mut Option, + loop_recorder: &mut crate::backend::vm_phi::LoopExecutor, + from: BasicBlockId, + to: BasicBlockId, +) -> Result<(), VMError> { + *previous_block = Some(from); + loop_recorder.record_transition(from, to); + Ok(()) +} + diff --git a/src/backend/dispatch.rs b/src/backend/dispatch.rs new file mode 100644 index 00000000..75cb4050 --- /dev/null +++ b/src/backend/dispatch.rs @@ -0,0 +1,26 @@ +/*! + * VM Dispatch table (scaffolding) + * + * Purpose: Centralize mapping from MIR instruction kinds to handler fns. + * Status: Initial skeleton; currently unused. Future: build static table for hot-path dispatch. + */ + +use crate::mir::MirInstruction; +use super::vm::{VMError}; + +/// Placeholder for an instruction dispatch entry +pub struct DispatchEntry; + +/// Placeholder dispatch table +pub struct DispatchTable; + +impl DispatchTable { + pub fn new() -> Self { Self } + + /// Example API for future use: resolve a handler for an instruction + pub fn resolve(&self, _instr: &MirInstruction) -> Option { None } +} + +/// Example execution of a dispatch entry +pub fn execute_entry(_entry: &DispatchEntry) -> Result<(), VMError> { Ok(()) } + diff --git a/src/backend/frame.rs b/src/backend/frame.rs new file mode 100644 index 00000000..29cff799 --- /dev/null +++ b/src/backend/frame.rs @@ -0,0 +1,21 @@ +/*! + * VM Frame management (scaffolding) + * + * Purpose: Provide a dedicated struct for per-function execution state (pc, block, locals). + * Status: Initial skeleton; VM still stores fields directly. + */ + +use crate::mir::{BasicBlockId, ValueId}; + +#[derive(Debug, Default, Clone)] +pub struct ExecutionFrame { + pub current_block: Option, + pub pc: usize, + pub last_result: Option, +} + +impl ExecutionFrame { + pub fn new() -> Self { Self { current_block: None, pc: 0, last_result: None } } + pub fn reset(&mut self) { self.current_block = None; self.pc = 0; self.last_result = None; } +} + diff --git a/src/backend/mod.rs b/src/backend/mod.rs index 9bd52239..f43e6580 100644 --- a/src/backend/mod.rs +++ b/src/backend/mod.rs @@ -8,6 +8,10 @@ pub mod vm_instructions; pub mod vm_values; pub mod vm_boxcall; pub mod vm_stats; +// Phase 9.78h: VM split scaffolding (control_flow/dispatch/frame) +pub mod control_flow; +pub mod dispatch; +pub mod frame; #[cfg(feature = "wasm-backend")] pub mod wasm; diff --git a/src/backend/vm.rs b/src/backend/vm.rs index 2a5fdce0..ea077e0c 100644 --- a/src/backend/vm.rs +++ b/src/backend/vm.rs @@ -225,14 +225,25 @@ pub struct VM { } impl VM { - /// Helper: execute phi via loop executor (exposes private field safely) + /// Helper: execute phi selection based on previous_block (borrow-safe minimal) pub(super) fn loop_execute_phi(&mut self, _dst: ValueId, inputs: &[(BasicBlockId, ValueId)]) -> Result { - // 80/20 minimal: select first input when we can't safely borrow executor + self simultaneously - if let Some((_, val_id)) = inputs.first() { - self.get_value(*val_id) - } else { - Err(VMError::InvalidInstruction("Phi node has no inputs".to_string())) + if inputs.is_empty() { + return Err(VMError::InvalidInstruction("Phi node has no inputs".to_string())); } + let debug_phi = std::env::var("NYASH_VM_DEBUG").ok().as_deref() == Some("1") + || std::env::var("NYASH_VM_DEBUG_PHI").ok().as_deref() == Some("1"); + let prev = self.previous_block; + if debug_phi { eprintln!("[VM] phi-select prev={:?} inputs={:?}", prev, inputs); } + if let Some(prev_bb) = prev { + if let Some((_, val_id)) = inputs.iter().find(|(bb, _)| *bb == prev_bb) { + if debug_phi { eprintln!("[VM] phi-select hit prev={:?} -> {:?}", prev_bb, val_id); } + return self.get_value(*val_id); + } + } + // Fallback: first input + let (_, val_id) = inputs[0]; + if debug_phi { eprintln!("[VM] phi-select fallback first -> {:?}", val_id); } + self.get_value(val_id) } /// Create a new VM instance pub fn new() -> Self { @@ -438,7 +449,9 @@ impl VM { /// Execute a single instruction fn execute_instruction(&mut self, instruction: &MirInstruction) -> Result { // Record instruction for stats - eprintln!("[VM] execute_instruction: {:?}", instruction); + let debug_global = std::env::var("NYASH_VM_DEBUG").ok().as_deref() == Some("1"); + let debug_exec = debug_global || std::env::var("NYASH_VM_DEBUG_EXEC").ok().as_deref() == Some("1"); + if debug_exec { eprintln!("[VM] execute_instruction: {:?}", instruction); } self.record_instruction(instruction); match instruction { @@ -447,7 +460,7 @@ impl VM { self.execute_const(*dst, value), MirInstruction::BinOp { dst, op, lhs, rhs } => { - if std::env::var("NYASH_VM_DEBUG_ANDOR").ok().as_deref() == Some("1") { + if debug_global || std::env::var("NYASH_VM_DEBUG_ANDOR").ok().as_deref() == Some("1") { eprintln!("[VM] execute_instruction -> BinOp({:?})", op); } self.execute_binop(*dst, op, *lhs, *rhs) @@ -457,12 +470,13 @@ impl VM { self.execute_unaryop(*dst, op, *operand), MirInstruction::Compare { dst, op, lhs, rhs } => { - eprintln!("[VM] dispatch Compare op={:?} lhs={:?} rhs={:?}", op, lhs, rhs); + let debug_cmp = debug_global || std::env::var("NYASH_VM_DEBUG_CMP").ok().as_deref() == Some("1"); + if debug_cmp { eprintln!("[VM] dispatch Compare op={:?} lhs={:?} rhs={:?}", op, lhs, rhs); } // Fast path: if both BoxRef, try numeric parse and compare if let (Ok(lv), Ok(rv)) = (self.get_value(*lhs), self.get_value(*rhs)) { - eprintln!("[VM] values before fastpath: left={:?} right={:?}", lv, rv); + if debug_cmp { eprintln!("[VM] values before fastpath: left={:?} right={:?}", lv, rv); } if let (VMValue::BoxRef(lb), VMValue::BoxRef(rb)) = (&lv, &rv) { - eprintln!("[VM] BoxRef types: lty={} rty={} lstr={} rstr={}", lb.type_name(), rb.type_name(), lb.to_string_box().value, rb.to_string_box().value); + if debug_cmp { eprintln!("[VM] BoxRef types: lty={} rty={} lstr={} rstr={}", lb.type_name(), rb.type_name(), lb.to_string_box().value, rb.to_string_box().value); } let li = lb.as_any().downcast_ref::().map(|x| x.value) .or_else(|| lb.to_string_box().value.trim().parse::().ok()); let ri = rb.as_any().downcast_ref::().map(|x| x.value) diff --git a/src/backend/vm_instructions.rs b/src/backend/vm_instructions.rs index 94bd03c9..ae9b5760 100644 --- a/src/backend/vm_instructions.rs +++ b/src/backend/vm_instructions.rs @@ -58,10 +58,12 @@ impl VM { /// Execute a comparison instruction pub(super) fn execute_compare(&mut self, dst: ValueId, op: &CompareOp, lhs: ValueId, rhs: ValueId) -> Result { - eprintln!("[VM] execute_compare enter op={:?} lhs={:?} rhs={:?}", op, lhs, rhs); + let debug_cmp = std::env::var("NYASH_VM_DEBUG").ok().as_deref() == Some("1") || + std::env::var("NYASH_VM_DEBUG_CMP").ok().as_deref() == Some("1"); + if debug_cmp { eprintln!("[VM] execute_compare enter op={:?} lhs={:?} rhs={:?}", op, lhs, rhs); } let mut left = self.get_value(lhs)?; let mut right = self.get_value(rhs)?; - eprintln!("[VM] execute_compare values: left={:?} right={:?}", left, right); + if debug_cmp { eprintln!("[VM] execute_compare values: left={:?} right={:?}", left, right); } // Canonicalize BoxRef(any) → try Integer via downcast/parse (no type_name reliance) left = match left { diff --git a/src/backend/vm_values.rs b/src/backend/vm_values.rs index c4f3ca6e..3eca7df6 100644 --- a/src/backend/vm_values.rs +++ b/src/backend/vm_values.rs @@ -136,7 +136,9 @@ impl VM { /// Execute comparison operation pub(super) fn execute_compare_op(&self, op: &CompareOp, left: &VMValue, right: &VMValue) -> Result { - eprintln!("[VM] execute_compare_op enter: op={:?}, left={:?}, right={:?}", op, left, right); + let debug_cmp = std::env::var("NYASH_VM_DEBUG").ok().as_deref() == Some("1") || + std::env::var("NYASH_VM_DEBUG_CMP").ok().as_deref() == Some("1"); + if debug_cmp { eprintln!("[VM] execute_compare_op enter: op={:?}, left={:?}, right={:?}", op, left, right); } match (left, right) { // Mixed numeric (VMValue::Integer(l), VMValue::Float(r)) => { diff --git a/src/box_trait.rs.backup b/src/box_trait.rs.backup deleted file mode 100644 index a4bd6f06..00000000 --- a/src/box_trait.rs.backup +++ /dev/null @@ -1,1455 +0,0 @@ -/*! - * Nyash Box Trait System - Everything is Box in Rust - * - * This module implements the core "Everything is Box" philosophy using Rust's - * ownership system and trait system. Every value in Nyash is a Box that - * implements the NyashBox trait. - */ - -use std::fmt::{Debug, Display}; -use std::any::Any; -use std::sync::{Arc, Mutex}; -use std::sync::atomic::{AtomicU64, Ordering}; -use std::fs; -use std::path::Path; - -// 🔥 æ–°ã—ã„型エイリアス - å°†æ¥çš„ã«Boxã‚’å…¨ã¦ç½®ãæ›ãˆã‚‹ -pub type SharedNyashBox = Arc; - -/// 🔥 BoxBase + BoxCoreé©å‘½ - 統一ID生æˆã‚·ã‚¹ãƒ†ãƒ  -/// CharmFlow教訓を活ã‹ã—ãŸäº’æ›æ€§ä¿è¨¼ã®åŸºç›¤ -pub fn next_box_id() -> u64 { - static COUNTER: AtomicU64 = AtomicU64::new(1); - COUNTER.fetch_add(1, Ordering::Relaxed) -} - -/// ðŸ—ï¸ BoxBase - å…¨ã¦ã®Boxåž‹ã®å…±é€šåŸºç›¤æ§‹é€ ä½“ -/// Phase 2: 統一的ãªåŸºç›¤ãƒ‡ãƒ¼ã‚¿ã‚’æä¾› -/// 🔥 Phase 1: ビルトインBox継承システム - 最å°é™æ‹¡å¼µ -#[derive(Debug, Clone, PartialEq)] -pub struct BoxBase { - pub id: u64, - pub parent_type_id: Option, // ビルトインBox継承用 -} - -impl BoxBase { - /// æ–°ã—ã„BoxBaseä½œæˆ - 安全ãªIDç”Ÿæˆ - pub fn new() -> Self { - Self { - id: next_box_id(), - parent_type_id: None, // ビルトインBox: 継承ãªã— - } - } - - /// ビルトインBox継承用コンストラクタ - pub fn with_parent_type(parent_type_id: std::any::TypeId) -> Self { - Self { - id: next_box_id(), - parent_type_id: Some(parent_type_id), - } - } -} - -/// 🎯 BoxCore - Box型共通メソッドã®çµ±ä¸€ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェース -/// Phase 2: é‡è¤‡ã‚³ãƒ¼ãƒ‰ã‚’削減ã™ã‚‹ä¸­æ ¸ãƒˆãƒ¬ã‚¤ãƒˆ -/// 🔥 Phase 2: ビルトインBox継承システム対応 -pub trait BoxCore: Send + Sync { - /// ボックスã®ä¸€æ„IDå–å¾— - fn box_id(&self) -> u64; - - /// 継承元ã®åž‹IDå–得(ビルトインBox継承用) - fn parent_type_id(&self) -> Option; - - /// Display実装ã®ãŸã‚ã®çµ±ä¸€ãƒ•ォーマット - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result; - - /// Any変æ›ï¼ˆãƒ€ã‚¦ãƒ³ã‚­ãƒ£ã‚¹ãƒˆç”¨ï¼‰ - fn as_any(&self) -> &dyn Any; - - /// Anyミュータブル変æ›ï¼ˆãƒ€ã‚¦ãƒ³ã‚­ãƒ£ã‚¹ãƒˆç”¨ï¼‰ - fn as_any_mut(&mut self) -> &mut dyn Any; -} - -/// The fundamental trait that all Nyash values must implement. -/// This embodies the "Everything is Box" philosophy with Rust's type safety. -pub trait NyashBox: BoxCore + Debug { - /// Convert this box to a string representation (equivalent to Python's toString()) - fn to_string_box(&self) -> StringBox; - - /// Check equality with another box (equivalent to Python's equals()) - fn equals(&self, other: &dyn NyashBox) -> BoolBox; - - /// Get the type name of this box for debugging - fn type_name(&self) -> &'static str { - std::any::type_name::() - } - - /// Clone this box (equivalent to Python's copy()) - fn clone_box(&self) -> Box; - - /// Arcå‚ç…§ã‚’è¿”ã™æ–°ã—ã„cloneメソッド(å‚照共有) - fn clone_arc(&self) -> SharedNyashBox { - Arc::from(self.clone_box()) - } - - // 🌟 TypeBoxé©å‘½: Get type information as a Box - // Everything is Box極é™å®Ÿç¾ - 型情報もBoxã¨ã—ã¦å–å¾—ï¼ - // TODO: 次ã®ã‚¹ãƒ†ãƒƒãƒ—ã§å®Œå…¨å®Ÿè£… - // fn get_type_box(&self) -> std::sync::Arc; -} - -// ===== Basic Box Types ===== - -/// String values in Nyash - immutable and owned -#[derive(Debug, Clone, PartialEq)] -pub struct StringBox { - pub value: String, - base: BoxBase, -} - -impl StringBox { - pub fn new(value: impl Into) -> Self { - Self { - value: value.into(), - base: BoxBase::new(), - } - } - - pub fn empty() -> Self { - Self::new("") - } - - // ===== String Methods for Nyash ===== - - /// Split string by delimiter and return ArrayBox - pub fn split(&self, delimiter: &str) -> Box { - let parts: Vec = self.value.split(delimiter).map(|s| s.to_string()).collect(); - let array_elements: Vec> = parts.into_iter() - .map(|s| Box::new(StringBox::new(s)) as Box) - .collect(); - Box::new(ArrayBox::new_with_elements(array_elements)) - } - - /// Find substring and return position (or -1 if not found) - pub fn find(&self, search: &str) -> Box { - match self.value.find(search) { - Some(pos) => Box::new(IntegerBox::new(pos as i64)), - None => Box::new(IntegerBox::new(-1)), - } - } - - /// Replace all occurrences of old with new - pub fn replace(&self, old: &str, new: &str) -> Box { - Box::new(StringBox::new(self.value.replace(old, new))) - } - - /// Trim whitespace from both ends - pub fn trim(&self) -> Box { - Box::new(StringBox::new(self.value.trim())) - } - - /// Convert to uppercase - pub fn to_upper(&self) -> Box { - Box::new(StringBox::new(self.value.to_uppercase())) - } - - /// Convert to lowercase - pub fn to_lower(&self) -> Box { - Box::new(StringBox::new(self.value.to_lowercase())) - } - - /// Check if string contains substring - pub fn contains(&self, search: &str) -> Box { - Box::new(BoolBox::new(self.value.contains(search))) - } - - /// Check if string starts with prefix - pub fn starts_with(&self, prefix: &str) -> Box { - Box::new(BoolBox::new(self.value.starts_with(prefix))) - } - - /// Check if string ends with suffix - pub fn ends_with(&self, suffix: &str) -> Box { - Box::new(BoolBox::new(self.value.ends_with(suffix))) - } - - /// Join array elements using this string as delimiter - pub fn join(&self, array_box: Box) -> Box { - if let Some(array) = array_box.as_any().downcast_ref::() { - let strings: Vec = array.items.lock().unwrap() - .iter() - .map(|element| element.to_string_box().value) - .collect(); - Box::new(StringBox::new(strings.join(&self.value))) - } else { - // If not an ArrayBox, treat as single element - Box::new(StringBox::new(array_box.to_string_box().value)) - } - } - - /// Get string length - pub fn length(&self) -> Box { - Box::new(IntegerBox::new(self.value.len() as i64)) - } - - /// Get character at index - pub fn get(&self, index: usize) -> Option> { - if let Some(ch) = self.value.chars().nth(index) { - Some(Box::new(StringBox::new(ch.to_string()))) - } else { - None - } - } -} - -impl BoxCore for StringBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}", self.value) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for StringBox { - fn to_string_box(&self) -> StringBox { - self.clone() - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_string) = other.as_any().downcast_ref::() { - BoolBox::new(self.value == other_string.value) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "StringBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for StringBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Integer values in Nyash - 64-bit signed integers -#[derive(Debug, Clone, PartialEq)] -pub struct IntegerBox { - pub value: i64, - base: BoxBase, -} - -impl IntegerBox { - pub fn new(value: i64) -> Self { - Self { - value, - base: BoxBase::new() - } - } - - pub fn zero() -> Self { - Self::new(0) - } -} - -impl BoxCore for IntegerBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}", self.value) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for IntegerBox { - fn to_string_box(&self) -> StringBox { - StringBox::new(self.value.to_string()) - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_int) = other.as_any().downcast_ref::() { - BoolBox::new(self.value == other_int.value) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "IntegerBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for IntegerBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Boolean values in Nyash - true/false -#[derive(Debug, Clone, PartialEq)] -pub struct BoolBox { - pub value: bool, - base: BoxBase, -} - -impl BoolBox { - pub fn new(value: bool) -> Self { - Self { - value, - base: BoxBase::new() - } - } - - pub fn true_box() -> Self { - Self::new(true) - } - - pub fn false_box() -> Self { - Self::new(false) - } -} - -impl BoxCore for BoolBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}", if self.value { "true" } else { "false" }) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for BoolBox { - fn to_string_box(&self) -> StringBox { - StringBox::new(if self.value { "true" } else { "false" }) - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_bool) = other.as_any().downcast_ref::() { - BoolBox::new(self.value == other_bool.value) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "BoolBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for BoolBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Void/null values in Nyash - represents empty or null results -#[derive(Debug, Clone, PartialEq)] -pub struct VoidBox { - base: BoxBase, -} - -impl VoidBox { - pub fn new() -> Self { - Self { - base: BoxBase::new() - } - } -} - -impl Default for VoidBox { - fn default() -> Self { - Self::new() - } -} - -impl BoxCore for VoidBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "void") - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for VoidBox { - fn to_string_box(&self) -> StringBox { - StringBox::new("void") - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - BoolBox::new(other.as_any().is::()) - } - - fn type_name(&self) -> &'static str { - "VoidBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for VoidBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -// ArrayBox is now defined in boxes::array module -pub use crate::boxes::array::ArrayBox; - -/// File values in Nyash - file system operations -#[derive(Debug, Clone)] -pub struct FileBox { - pub path: String, - base: BoxBase, -} - -impl FileBox { - pub fn new(path: impl Into) -> Self { - Self { - path: path.into(), - base: BoxBase::new(), - } - } - - // ===== File Methods for Nyash ===== - - /// Read file contents as string - pub fn read(&self) -> Box { - match fs::read_to_string(&self.path) { - Ok(content) => Box::new(StringBox::new(content)), - Err(_) => Box::new(VoidBox::new()), // Return void on error for now - } - } - - /// Write content to file - pub fn write(&self, content: Box) -> Box { - let content_str = content.to_string_box().value; - match fs::write(&self.path, content_str) { - Ok(_) => Box::new(BoolBox::new(true)), - Err(_) => Box::new(BoolBox::new(false)), - } - } - - /// Check if file exists - pub fn exists(&self) -> Box { - Box::new(BoolBox::new(Path::new(&self.path).exists())) - } - - /// Delete file - pub fn delete(&self) -> Box { - match fs::remove_file(&self.path) { - Ok(_) => Box::new(BoolBox::new(true)), - Err(_) => Box::new(BoolBox::new(false)), - } - } - - /// Copy file to destination - pub fn copy(&self, dest_path: &str) -> Box { - match fs::copy(&self.path, dest_path) { - Ok(_) => Box::new(BoolBox::new(true)), - Err(_) => Box::new(BoolBox::new(false)), - } - } -} - -impl BoxCore for FileBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "", self.path) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for FileBox { - fn to_string_box(&self) -> StringBox { - StringBox::new(format!("", self.path)) - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_file) = other.as_any().downcast_ref::() { - BoolBox::new(self.path == other_file.path) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "FileBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for FileBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Error values in Nyash - represents error information -#[derive(Debug, Clone)] -pub struct ErrorBox { - pub error_type: String, - pub message: String, - base: BoxBase, -} - -impl ErrorBox { - pub fn new(error_type: impl Into, message: impl Into) -> Self { - Self { - error_type: error_type.into(), - message: message.into(), - base: BoxBase::new(), - } - } -} - -impl BoxCore for ErrorBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}: {}", self.error_type, self.message) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for ErrorBox { - fn to_string_box(&self) -> StringBox { - StringBox::new(format!("{}: {}", self.error_type, self.message)) - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_error) = other.as_any().downcast_ref::() { - BoolBox::new(self.error_type == other_error.error_type && self.message == other_error.message) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "ErrorBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl Display for ErrorBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Result values in Nyash - represents success or error results -#[derive(Debug)] -pub struct ResultBox { - pub is_success: bool, - pub value: Option>, - pub error: Option, - base: BoxBase, -} - -impl ResultBox { - pub fn new_success(value: Box) -> Self { - Self { - is_success: true, - value: Some(value), - error: None, - base: BoxBase::new(), - } - } - - pub fn new_error(error: ErrorBox) -> Self { - Self { - is_success: false, - value: None, - error: Some(error), - base: BoxBase::new(), - } - } - - // ===== Result Methods for Nyash ===== - - /// Check if result is successful - pub fn is_ok(&self) -> Box { - Box::new(BoolBox::new(self.is_success)) - } - - /// Get success value (returns void if error) - pub fn get_value(&self) -> Box { - match &self.value { - Some(val) => val.clone_box(), - None => Box::new(VoidBox::new()), - } - } - - /// Get error (returns void if success) - pub fn get_error(&self) -> Box { - match &self.error { - Some(err) => Box::new(err.clone()), - None => Box::new(VoidBox::new()), - } - } -} - -impl BoxCore for ResultBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}", self.to_string_box().value) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl NyashBox for ResultBox { - fn to_string_box(&self) -> StringBox { - if self.is_success { - if let Some(value) = &self.value { - StringBox::new(format!("Result(OK: {})", value.to_string_box().value)) - } else { - StringBox::new("Result(OK: void)".to_string()) - } - } else { - if let Some(error) = &self.error { - StringBox::new(format!("Result(Error: {})", error.to_string_box().value)) - } else { - StringBox::new("Result(Error: unknown)".to_string()) - } - } - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_result) = other.as_any().downcast_ref::() { - if self.is_success != other_result.is_success { - return BoolBox::new(false); - } - - if self.is_success { - // Compare success values - match (&self.value, &other_result.value) { - (Some(a), Some(b)) => a.equals(b.as_ref()), - (None, None) => BoolBox::new(true), - _ => BoolBox::new(false), - } - } else { - // Compare errors - match (&self.error, &other_result.error) { - (Some(a), Some(b)) => a.equals(b), - (None, None) => BoolBox::new(true), - _ => BoolBox::new(false), - } - } - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "ResultBox" - } - - fn clone_box(&self) -> Box { - if self.is_success { - if let Some(value) = &self.value { - Box::new(ResultBox::new_success(value.clone_box())) - } else { - Box::new(ResultBox::new_success(Box::new(VoidBox::new()))) - } - } else { - if let Some(error) = &self.error { - Box::new(ResultBox::new_error(error.clone())) - } else { - Box::new(ResultBox::new_error(ErrorBox::new("Unknown", "Unknown error"))) - } - } - } - -} - -impl Display for ResultBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -/// Future values in Nyash - represents async operations -#[derive(Debug)] -pub struct FutureBox { - pub result: Arc>>>, - pub is_ready: Arc>, - base: BoxBase, -} - -impl Clone for FutureBox { - fn clone(&self) -> Self { - Self { - result: Arc::clone(&self.result), - is_ready: Arc::clone(&self.is_ready), - base: BoxBase::new(), // æ–°ã—ã„IDã‚’ç”Ÿæˆ - } - } -} - -impl FutureBox { - pub fn new() -> Self { - Self { - result: Arc::new(Mutex::new(None)), - is_ready: Arc::new(Mutex::new(false)), - base: BoxBase::new(), - } - } - - /// Set the result of the future - pub fn set_result(&self, value: Box) { - let mut result = self.result.lock().unwrap(); - *result = Some(value); - let mut ready = self.is_ready.lock().unwrap(); - *ready = true; - } - - /// Get the result (blocks until ready) - pub fn get(&self) -> Box { - // 簡易実装: ビジーウェイト(後ã§condvarã«æ”¹å–„) - loop { - let ready = self.is_ready.lock().unwrap(); - if *ready { - break; - } - drop(ready); - std::thread::yield_now(); - } - - let result = self.result.lock().unwrap(); - result.as_ref().unwrap().clone_box() - } - - /// Check if the future is ready - pub fn ready(&self) -> Box { - Box::new(BoolBox::new(*self.is_ready.lock().unwrap())) - } - - /// Wait and get the result (for await implementation) - pub fn wait_and_get(&self) -> Result, String> { - // çµæžœãŒæº–å‚™ã§ãã‚‹ã¾ã§å¾…機 - while !*self.is_ready.lock().unwrap() { - std::thread::yield_now(); - } - - let result = self.result.lock().unwrap(); - result.as_ref() - .map(|v| v.clone_box()) - .ok_or_else(|| "Future has no result".to_string()) - } -} - -impl NyashBox for FutureBox { - fn to_string_box(&self) -> StringBox { - let ready = *self.is_ready.lock().unwrap(); - if ready { - let result = self.result.lock().unwrap(); - if let Some(value) = result.as_ref() { - StringBox::new(format!("Future(ready: {})", value.to_string_box().value)) - } else { - StringBox::new("Future(ready: void)".to_string()) - } - } else { - StringBox::new("Future(pending)".to_string()) - } - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_future) = other.as_any().downcast_ref::() { - BoolBox::new(self.base.id == other_future.base.id) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "FutureBox" - } - - fn clone_box(&self) -> Box { - Box::new(self.clone()) - } - -} - -impl BoxCore for FutureBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "{}", self.to_string_box().value) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl Display for FutureBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -// Re-export operation boxes from the dedicated operations module -pub use crate::box_operations::{AddBox, SubtractBox, MultiplyBox, DivideBox, CompareBox}; - -#[cfg(test)] - pub left: Box, - pub right: Box, - base: BoxBase, -} - -impl AddBox { - pub fn new(left: Box, right: Box) -> Self { - Self { - left, - right, - base: BoxBase::new(), - } - } - - /// Execute the addition operation and return the result - pub fn execute(&self) -> Box { - use crate::boxes::math_box::FloatBox; - - // 1. Integer + Integer - if let (Some(left_int), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(IntegerBox::new(left_int.value + right_int.value)); - } - - // 2. Float + Float - if let (Some(left_float), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value + right_float.value)); - } - - // 3. Integer + Float -> Float - if let (Some(left_int), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_int.value as f64 + right_float.value)); - } - - // 4. Float + Integer -> Float - if let (Some(left_float), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value + right_int.value as f64)); - } - - // 5. Fall back to string concatenation - let left_str = self.left.to_string_box(); - let right_str = self.right.to_string_box(); - Box::new(StringBox::new(format!("{}{}", left_str.value, right_str.value))) - } -} - -impl Debug for AddBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.debug_struct("AddBox") - .field("left", &self.left.to_string_box().value) - .field("right", &self.right.to_string_box().value) - .field("id", &self.base.id) - .finish() - } -} - -impl NyashBox for AddBox { - fn to_string_box(&self) -> StringBox { - let result = self.execute(); - result.to_string_box() - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_add) = other.as_any().downcast_ref::() { - let left_eq = self.left.equals(other_add.left.as_ref()); - let right_eq = self.right.equals(other_add.right.as_ref()); - BoolBox::new(left_eq.value && right_eq.value) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "AddBox" - } - - fn clone_box(&self) -> Box { - Box::new(AddBox::new( - self.left.clone_box(), - self.right.clone_box() - )) - } - -} - -impl BoxCore for AddBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - write!(f, "({} + {})", self.left.to_string_box().value, self.right.to_string_box().value) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl Display for AddBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -// ===== 数値演算Boxã®å®Ÿè£… ===== - -/// 減算を行ã†Box -pub struct SubtractBox { - left: Box, - right: Box, -} - -impl SubtractBox { - pub fn new(left: Box, right: Box) -> Self { - Self { left, right } - } - - pub fn execute(&self) -> Box { - use crate::boxes::math_box::FloatBox; - - // 1. Integer - Integer - if let (Some(left_int), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(IntegerBox::new(left_int.value - right_int.value)); - } - - // 2. Float - Float - if let (Some(left_float), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value - right_float.value)); - } - - // 3. Integer - Float -> Float - if let (Some(left_int), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_int.value as f64 - right_float.value)); - } - - // 4. Float - Integer -> Float - if let (Some(left_float), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value - right_int.value as f64)); - } - - // エラーã®å ´åˆã¯void返㙠- Box::new(VoidBox::new()) - } -} - -/// 乗算を行ã†Box -pub struct MultiplyBox { - left: Box, - right: Box, -} - -impl MultiplyBox { - pub fn new(left: Box, right: Box) -> Self { - Self { left, right } - } - - pub fn execute(&self) -> Box { - use crate::boxes::math_box::FloatBox; - - // 1. Integer * Integer - if let (Some(left_int), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(IntegerBox::new(left_int.value * right_int.value)); - } - - // 2. Float * Float - if let (Some(left_float), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value * right_float.value)); - } - - // 3. Integer * Float -> Float - if let (Some(left_int), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_int.value as f64 * right_float.value)); - } - - // 4. Float * Integer -> Float - if let (Some(left_float), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - return Box::new(FloatBox::new(left_float.value * right_int.value as f64)); - } - - // エラーã®å ´åˆã¯void返㙠- Box::new(VoidBox::new()) - } -} - -/// 除算を行ã†Box -pub struct DivideBox { - left: Box, - right: Box, -} - -impl DivideBox { - pub fn new(left: Box, right: Box) -> Self { - Self { left, right } - } - - pub fn execute(&self) -> Box { - use crate::boxes::math_box::FloatBox; - - // 1. Integer / Integer -> Float (å¸¸ã«æµ®å‹•å°æ•°ç‚¹ã§è¿”ã™) - if let (Some(left_int), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - if right_int.value == 0 { - // ゼロ除算エラー - return Box::new(StringBox::new("Error: Division by zero".to_string())); - } - return Box::new(FloatBox::new(left_int.value as f64 / right_int.value as f64)); - } - - // 2. Float / Float - if let (Some(left_float), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - if right_float.value == 0.0 { - // ゼロ除算エラー - return Box::new(StringBox::new("Error: Division by zero".to_string())); - } - return Box::new(FloatBox::new(left_float.value / right_float.value)); - } - - // 3. Integer / Float -> Float - if let (Some(left_int), Some(right_float)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - if right_float.value == 0.0 { - // ゼロ除算エラー - return Box::new(StringBox::new("Error: Division by zero".to_string())); - } - return Box::new(FloatBox::new(left_int.value as f64 / right_float.value)); - } - - // 4. Float / Integer -> Float - if let (Some(left_float), Some(right_int)) = ( - self.left.as_any().downcast_ref::(), - self.right.as_any().downcast_ref::() - ) { - if right_int.value == 0 { - // ゼロ除算エラー - return Box::new(StringBox::new("Error: Division by zero".to_string())); - } - return Box::new(FloatBox::new(left_float.value / right_int.value as f64)); - } - - // エラーã®å ´åˆã¯void返㙠- Box::new(VoidBox::new()) - } -} - -/// 比較演算用ã®ãƒ˜ãƒ«ãƒ‘ー -pub struct CompareBox; - -impl CompareBox { - pub fn less(left: &dyn NyashBox, right: &dyn NyashBox) -> BoolBox { - use crate::boxes::FloatBox; - - // Integer < Integer - if let (Some(left_int), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_int.value < right_int.value); - } - - // Float < Float - if let (Some(left_float), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value < right_float.value); - } - - // Integer < Float - if let (Some(left_int), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new((left_int.value as f64) < right_float.value); - } - - // Float < Integer - if let (Some(left_float), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value < (right_int.value as f64)); - } - - BoolBox::new(false) - } - - pub fn greater(left: &dyn NyashBox, right: &dyn NyashBox) -> BoolBox { - use crate::boxes::FloatBox; - - // Integer > Integer - if let (Some(left_int), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_int.value > right_int.value); - } - - // Float > Float - if let (Some(left_float), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value > right_float.value); - } - - // Integer > Float - if let (Some(left_int), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new((left_int.value as f64) > right_float.value); - } - - // Float > Integer - if let (Some(left_float), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value > (right_int.value as f64)); - } - - BoolBox::new(false) - } - - pub fn less_equal(left: &dyn NyashBox, right: &dyn NyashBox) -> BoolBox { - use crate::boxes::FloatBox; - - // Integer <= Integer - if let (Some(left_int), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_int.value <= right_int.value); - } - - // Float <= Float - if let (Some(left_float), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value <= right_float.value); - } - - // Integer <= Float - if let (Some(left_int), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new((left_int.value as f64) <= right_float.value); - } - - // Float <= Integer - if let (Some(left_float), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value <= (right_int.value as f64)); - } - - BoolBox::new(false) - } - - pub fn greater_equal(left: &dyn NyashBox, right: &dyn NyashBox) -> BoolBox { - use crate::boxes::FloatBox; - - // Integer >= Integer - if let (Some(left_int), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_int.value >= right_int.value); - } - - // Float >= Float - if let (Some(left_float), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value >= right_float.value); - } - - // Integer >= Float - if let (Some(left_int), Some(right_float)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new((left_int.value as f64) >= right_float.value); - } - - // Float >= Integer - if let (Some(left_float), Some(right_int)) = ( - left.as_any().downcast_ref::(), - right.as_any().downcast_ref::() - ) { - return BoolBox::new(left_float.value >= (right_int.value as f64)); - } - - BoolBox::new(false) - } -} - -// ===== Tests ===== - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_string_box_creation() { - let s = StringBox::new("Hello, Rust!"); - assert_eq!(s.value, "Hello, Rust!"); - assert_eq!(s.type_name(), "StringBox"); - assert_eq!(s.to_string_box().value, "Hello, Rust!"); - } - - #[test] - fn test_integer_box_creation() { - let i = IntegerBox::new(42); - assert_eq!(i.value, 42); - assert_eq!(i.type_name(), "IntegerBox"); - assert_eq!(i.to_string_box().value, "42"); - } - - #[test] - fn test_bool_box_creation() { - let b = BoolBox::new(true); - assert_eq!(b.value, true); - assert_eq!(b.type_name(), "BoolBox"); - assert_eq!(b.to_string_box().value, "true"); - } - - #[test] - fn test_box_equality() { - let s1 = StringBox::new("test"); - let s2 = StringBox::new("test"); - let s3 = StringBox::new("different"); - - assert!(s1.equals(&s2).value); - assert!(!s1.equals(&s3).value); - } - - #[test] - fn test_add_box_integers() { - let left = Box::new(IntegerBox::new(5)) as Box; - let right = Box::new(IntegerBox::new(3)) as Box; - let add = AddBox::new(left, right); - - let result = add.execute(); - let result_int = result.as_any().downcast_ref::().unwrap(); - assert_eq!(result_int.value, 8); - } - - #[test] - fn test_add_box_strings() { - let left = Box::new(StringBox::new("Hello, ")) as Box; - let right = Box::new(StringBox::new("Rust!")) as Box; - let add = AddBox::new(left, right); - - let result = add.execute(); - let result_str = result.as_any().downcast_ref::().unwrap(); - assert_eq!(result_str.value, "Hello, Rust!"); - } - - #[test] - fn test_box_ids_unique() { - let s1 = StringBox::new("test"); - let s2 = StringBox::new("test"); - - // Same content but different IDs - assert_ne!(s1.box_id(), s2.box_id()); - } - - #[test] - fn test_void_box() { - let v = VoidBox::new(); - assert_eq!(v.type_name(), "VoidBox"); - assert_eq!(v.to_string_box().value, "void"); - } -} \ No newline at end of file diff --git a/src/instance.rs.backup b/src/instance.rs.backup deleted file mode 100644 index 6197dfc9..00000000 --- a/src/instance.rs.backup +++ /dev/null @@ -1,538 +0,0 @@ -/*! - * Nyash Instance System - Box Instance Implementation - * - * Boxインスタンスã¨ClassBoxã®å®Ÿè£… - * Everything is Box哲学ã«åŸºã¥ãオブジェクト指å‘システム - */ - -use crate::box_trait::{NyashBox, StringBox, BoolBox, VoidBox, BoxCore, BoxBase, SharedNyashBox}; -use crate::ast::ASTNode; -use crate::value::NyashValue; -use crate::interpreter::NyashInterpreter; -use std::collections::HashMap; -use std::fmt::{Debug, Display}; -use std::any::Any; -use std::sync::{Arc, Mutex}; - -/// Boxインスタンス - フィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’æŒã¤ã‚ªãƒ–ジェクト -#[derive(Debug, Clone)] -pub struct InstanceBox { - /// クラスå - pub class_name: String, - - /// フィールド値 (Updated to use Arc for reference sharing) - pub fields: Arc>>, - - /// 🔗 Next-generation fields (weak reference capable) - pub fields_ng: Arc>>, - - /// メソッド定義(ClassBoxã‹ã‚‰å…±æœ‰ï¼‰ - pub methods: Arc>, - - /// Box基底 - base: BoxBase, - - /// 解放済ã¿ãƒ•ラグ - finalized: Arc>, - - /// 🔥 Phase 2: finiシステム完全実装 - ChatGPT5設計 - /// init宣言順åºï¼ˆæ±ºå®šçš„カスケード用) - init_field_order: Vec, - - /// weak フィールド高速判定用 - weak_fields_union: std::collections::HashSet, - - /// 解放中フラグ(å†å…¥é˜²æ­¢ï¼‰ - in_finalization: Arc>, -} - -impl InstanceBox { - pub fn new(class_name: String, fields: Vec, methods: HashMap) -> Self { - // フィールドをVoidBoxã§åˆæœŸåŒ– - let mut field_map: HashMap = HashMap::new(); - for field in &fields { - field_map.insert(field.clone(), Arc::new(VoidBox::new())); - } - - Self { - class_name, - fields: Arc::new(Mutex::new(field_map)), - fields_ng: Arc::new(Mutex::new(HashMap::new())), // 🔗 Initialize next-gen fields - methods: Arc::new(methods), - base: BoxBase::new(), - finalized: Arc::new(Mutex::new(false)), - init_field_order: fields.clone(), // 🔥 Basic field order for backwards compatibility - weak_fields_union: std::collections::HashSet::new(), // 🔥 Empty for backwards compatibility - in_finalization: Arc::new(Mutex::new(false)), // 🔥 Initialize finalization guard - } - } - - /// 🔥 Enhanced constructor with complete fini system support - pub fn new_with_box_info( - class_name: String, - fields: Vec, - methods: HashMap, - init_field_order: Vec, - weak_fields: Vec - ) -> Self { - // フィールドをVoidBoxã§åˆæœŸåŒ– - let mut field_map = HashMap::new(); - for field in &fields { - field_map.insert(field.clone(), Arc::new(VoidBox::new()) as Arc); - } - - // Weak fields ã‚’HashSetã«å¤‰æ›ï¼ˆé«˜é€Ÿåˆ¤å®šç”¨ï¼‰ - let weak_fields_union: std::collections::HashSet = weak_fields.into_iter().collect(); - - Self { - class_name, - fields: Arc::new(Mutex::new(field_map)), - fields_ng: Arc::new(Mutex::new(HashMap::new())), - methods: Arc::new(methods), - base: BoxBase::new(), - finalized: Arc::new(Mutex::new(false)), - init_field_order, // 🔥 æ±ºå®šçš„ã‚«ã‚¹ã‚±ãƒ¼ãƒ‰é †åº - weak_fields_union, // 🔥 高速weak判定 - in_finalization: Arc::new(Mutex::new(false)), // 🔥 å†å…¥é˜²æ­¢ - } - } - - /// 🔗 Unified field access - prioritizes fields_ng, fallback to legacy fields with conversion - pub fn get_field_unified(&self, field_name: &str) -> Option { - // Check fields_ng first - if let Some(value) = self.fields_ng.lock().unwrap().get(field_name) { - return Some(value.clone()); - } - - // Fallback to legacy fields with conversion - if let Some(legacy_box) = self.fields.lock().unwrap().get(field_name) { - // For backward compatibility, we need to work around the type mismatch - // Since we can't easily convert Box to Arc> - // We'll use the from_box method which handles this conversion - // We need to create a temporary Arc to satisfy the method signature - let _temp_arc = Arc::new(Mutex::new(VoidBox::new())); - // Unfortunately, there's a type system limitation here - // For now, let's return a simple converted value - let string_rep = legacy_box.to_string_box().value; - return Some(NyashValue::String(string_rep)); - } - - None - } - - /// 🔗 Unified field setting - always stores in fields_ng - pub fn set_field_unified(&self, field_name: String, value: NyashValue) -> Result<(), String> { - // Always store in fields_ng for future compatibility - self.fields_ng.lock().unwrap().insert(field_name.clone(), value.clone()); - - // For backward compatibility, also update legacy fields if they exist - // Convert NyashValue back to Box for legacy storage - if self.fields.lock().unwrap().contains_key(&field_name) { - if let Ok(legacy_box) = value.to_box() { - // Convert Arc> to Box - if let Ok(_inner_box) = legacy_box.try_lock() { - self.fields.lock().unwrap().insert(field_name, Arc::from(_inner_box.clone_box())); - } - } - } - - Ok(()) - } - - /// 🔗 Set weak field - converts strong reference to weak and stores in fields_ng - pub fn set_weak_field(&self, field_name: String, value: NyashValue) -> Result<(), String> { - match value { - NyashValue::Box(arc_box) => { - let weak_ref = Arc::downgrade(&arc_box); - let field_name_clone = field_name.clone(); // Clone for eprintln - self.fields_ng.lock().unwrap().insert(field_name, NyashValue::WeakBox(weak_ref)); - eprintln!("🔗 DEBUG: Successfully converted strong reference to weak for field '{}'", field_name_clone); - Ok(()) - } - _ => { - // For non-Box values, store as-is (they don't need weak conversion) - self.fields_ng.lock().unwrap().insert(field_name, value); - Ok(()) - } - } - } - - /// 🔗 Set weak field from legacy Box - helper method for interpreter - pub fn set_weak_field_from_legacy(&self, field_name: String, legacy_box: Box) -> Result<(), String> { - // Convert Box to Arc> via temporary wrapper - // We create a temporary holder struct that implements NyashBox - - - // Store the object info in a way we can track - let object_info = legacy_box.to_string_box().value; - let field_name_clone = field_name.clone(); - - // Create a special weak reference marker with object details - let weak_marker = format!("WEAK_REF_TO:{}", object_info); - self.fields_ng.lock().unwrap().insert(field_name, NyashValue::String(weak_marker)); - - eprintln!("🔗 DEBUG: Stored weak field '{}' with reference tracking", field_name_clone); - Ok(()) - } - - /// 🔗 Get weak field with auto-upgrade and nil fallback - pub fn get_weak_field(&self, field_name: &str, interpreter: &NyashInterpreter) -> Option { - if let Some(value) = self.fields_ng.lock().unwrap().get(field_name) { - match value { - NyashValue::WeakBox(weak_ref) => { - if let Some(strong_ref) = weak_ref.upgrade() { - eprintln!("🔗 DEBUG: Weak field '{}' upgraded successfully", field_name); - Some(NyashValue::Box(strong_ref)) - } else { - eprintln!("🔗 DEBUG: Weak field '{}' target was dropped - returning null", field_name); - Some(NyashValue::Null) // 🎯 Auto-nil behavior! - } - } - NyashValue::String(s) => { - // For string-based weak fields, check if they're marked as "dropped" - if s.starts_with("WEAK_REF_TO:") { - // Extract the object ID from the weak reference string - // Format: "WEAK_REF_TO:" - let mut is_dropped = false; - - if let Some(hash_pos) = s.find('#') { - let id_str = &s[hash_pos + 1..]; - let id_end = id_str.find('>').unwrap_or(id_str.len()); - let clean_id_str = &id_str[..id_end]; - - if let Ok(id) = clean_id_str.parse::() { - is_dropped = interpreter.invalidated_ids.lock().unwrap().contains(&id); - eprintln!("🔗 DEBUG: Checking weak field '{}' with ID {} - dropped: {}", field_name, id, is_dropped); - } else { - eprintln!("🔗 DEBUG: Failed to parse ID from weak reference: {}", clean_id_str); - } - } else { - // Fallback to old behavior for backwards compatibility - is_dropped = s.contains("Parent") && interpreter.invalidated_ids.lock().unwrap().contains(&999); - eprintln!("🔗 DEBUG: Using fallback check for weak field '{}' - dropped: {}", field_name, is_dropped); - } - - if is_dropped { - eprintln!("🔗 DEBUG: Weak field '{}' target was dropped - returning null", field_name); - return Some(NyashValue::Null); // 🎉 Auto-nil! - } - - // Still valid - eprintln!("🔗 DEBUG: Weak field '{}' still has valid reference", field_name); - Some(value.clone()) - } else if s == "WEAK_REFERENCE_DROPPED" { - eprintln!("🔗 DEBUG: Weak field '{}' target was dropped - returning null", field_name); - Some(NyashValue::Null) - } else { - eprintln!("🔗 DEBUG: Weak field '{}' still has valid reference", field_name); - Some(value.clone()) - } - } - _ => { - // Non-weak value, return as-is - Some(value.clone()) - } - } - } else { - None - } - } - - /// 🔗 Mark weak references to this instance as dropped - pub fn invalidate_weak_references_to(&self, target_info: &str) { - let mut fields = self.fields_ng.lock().unwrap(); - for (field_name, value) in fields.iter_mut() { - match value { - NyashValue::String(s) => { - // Check if this is a weak reference to the target - if s.starts_with("WEAK_REF_TO:") && s.contains(target_info) { - *s = "WEAK_REFERENCE_DROPPED".to_string(); - eprintln!("🔗 DEBUG: Marked weak field '{}' as dropped", field_name); - } - } - NyashValue::WeakBox(weak_ref) => { - // Check if the weak reference is dead - if weak_ref.upgrade().is_none() { - eprintln!("🔗 DEBUG: Weak field '{}' reference is already dead", field_name); - } - } - _ => {} - } - } - } - - /// 🔗 Global invalidation - call this when any object is dropped - pub fn global_invalidate_weak_references(target_info: &str) { - // In a real implementation, we'd maintain a global registry of all instances - // and iterate through them to invalidate weak references. - // For this demo, we'll add the capability to the instance itself. - eprintln!("🔗 DEBUG: Global weak reference invalidation for: {}", target_info); - } - - /// フィールドã®å€¤ã‚’å–å¾— - pub fn get_field(&self, field_name: &str) -> Option { - eprintln!("✅ FIX: get_field('{}') returning shared Arc reference", field_name); - - // 🔧 修正:v.clone_box() → Arc::clone(v) ã§å‚照共有 - self.fields.lock().unwrap().get(field_name).map(Arc::clone) - } - - /// フィールドã«å€¤ã‚’設定 - pub fn set_field(&self, field_name: &str, value: SharedNyashBox) -> Result<(), String> { - eprintln!("🔧 INSTANCE: set_field('{}') with shared Arc reference id={}", - field_name, value.box_id()); - - let mut fields = self.fields.lock().unwrap(); - if fields.contains_key(field_name) { - if let Some(old_value) = fields.get(field_name) { - eprintln!("🔧 INSTANCE: Replacing field '{}': old_id={} -> new_id={}", - field_name, old_value.box_id(), value.box_id()); - } - fields.insert(field_name.to_string(), value); - Ok(()) - } else { - Err(format!("Field '{}' does not exist in {}", field_name, self.class_name)) - } - } - - /// 🌠GlobalBox用:フィールドを動的ã«è¿½åŠ ãƒ»è¨­å®š - pub fn set_field_dynamic(&mut self, field_name: String, value: SharedNyashBox) { - let mut fields = self.fields.lock().unwrap(); - fields.insert(field_name, value); - } - - /// メソッド定義をå–å¾— - pub fn get_method(&self, method_name: &str) -> Option<&ASTNode> { - self.methods.get(method_name) - } - - /// メソッドãŒå­˜åœ¨ã™ã‚‹ã‹ãƒã‚§ãƒƒã‚¯ - pub fn has_method(&self, method_name: &str) -> bool { - self.methods.contains_key(method_name) - } - - /// 🌠GlobalBox用:メソッドを動的ã«è¿½åŠ  - 🔥 暗黙オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ç¦æ­¢ã«ã‚ˆã‚‹å®‰å…¨å®Ÿè£… - pub fn add_method(&mut self, method_name: String, method_ast: ASTNode) -> Result<(), String> { - // Arcã¯ä¸å¤‰ãªã®ã§ã€æ–°ã—ã„HashMapを作æˆã—ã¦Arcã§åŒ…ã‚€ - let mut new_methods = (*self.methods).clone(); - - // 🚨 暗黙オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ç¦æ­¢ï¼šæ—¢å­˜ãƒ¡ã‚½ãƒƒãƒ‰ã®æ¤œæŸ» - if let Some(_existing_method) = new_methods.get(&method_name) { - // æ–°ã—ã„メソッドã®overrideçŠ¶æ…‹ã‚’ç¢ºèª - let is_override = match &method_ast { - crate::ast::ASTNode::FunctionDeclaration { is_override, .. } => *is_override, - _ => false, // FunctionDeclaration以外ã¯ã‚ªãƒ¼ãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãªã— - }; - - if !is_override { - // 🔥 明示的オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰é©å‘½ï¼šoverrideキーワードãªã—ã®é‡è¤‡ã‚’ç¦æ­¢ - return Err(format!( - "🚨 EXPLICIT OVERRIDE REQUIRED: Method '{}' already exists.\n\ - 💡 To replace the existing method, use 'override {}(...) {{ ... }}'.\n\ - 🌟 This is Nyash's explicit delegation philosophy - no hidden overrides!", - method_name, method_name - )); - } - - // override宣言ãŒã‚れã°ã€æ˜Žç¤ºçš„ãªç½®æ›ã¨ã—ã¦è¨±å¯ - eprintln!("🔥 EXPLICIT OVERRIDE: Method '{}' replaced with override declaration", method_name); - } - - new_methods.insert(method_name, method_ast); - self.methods = Arc::new(new_methods); - Ok(()) - } - - /// 🔥 Enhanced fini()メソッド - ChatGPT5設計ã«ã‚ˆã‚‹å®Œå…¨å®Ÿè£… - pub fn fini(&self) -> Result<(), String> { - // 1) finalized ãƒã‚§ãƒƒã‚¯ï¼ˆidempotent) - let mut finalized = self.finalized.lock().unwrap(); - if *finalized { - // æ—¢ã«è§£æ”¾æ¸ˆã¿ãªã‚‰ä½•ã‚‚ã—ãªã„ - return Ok(()); - } - - // 2) in_finalization = true(å†å…¥é˜²æ­¢ï¼‰ - let mut in_finalization = self.in_finalization.lock().unwrap(); - if *in_finalization { - return Err("Circular finalization detected - fini() called recursively".to_string()); - } - *in_finalization = true; - - // 3) TODO: ユーザー定義fini()実行(インタープリターå´ã§å®Ÿè£…予定) - // ã“ã®ãƒ¡ã‚½ãƒƒãƒ‰ã¯ä½Žãƒ¬ãƒ™ãƒ«ãªfini処ç†ãªã®ã§ã€é«˜ãƒ¬ãƒ™ãƒ«ãªãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©fini()㯠- // インタープリターå´ã§å…ˆã«å‘¼ã³å‡ºã•れる想定 - - // 4) 自動カスケード: init_field_order ã®å¼·å‚照フィールド㫠child.fini() - self.cascade_finalize_fields()?; - - // 5) 全フィールドクリア + finalized = true - let mut fields = self.fields.lock().unwrap(); - fields.clear(); - let mut fields_ng = self.fields_ng.lock().unwrap(); - fields_ng.clear(); - - *finalized = true; - *in_finalization = false; // å†å…¥ãƒ•ラグをクリア - - eprintln!("🔥 fini(): Instance {} (ID: {}) finalized", self.class_name, self.base.id); - Ok(()) - } - - /// 🔥 自動カスケード解放 - init宣言順ã§ãƒ•ィールドをfini - fn cascade_finalize_fields(&self) -> Result<(), String> { - let fields_ng = self.fields_ng.lock().unwrap(); - - // init_field_order ã®é€†é †ã§finiを実行(LIFO - Last In First Out) - for field_name in self.init_field_order.iter().rev() { - // weak フィールドã¯ã‚¹ã‚­ãƒƒãƒ— - if self.weak_fields_union.contains(field_name) { - eprintln!("🔥 fini(): Skipping weak field '{}' (non-owning reference)", field_name); - continue; - } - - // フィールドã®å€¤ã‚’å–å¾—ã—ã¦fini呼ã³å‡ºã— - if let Some(field_value) = fields_ng.get(field_name) { - match field_value { - crate::value::NyashValue::Box(arc_box) => { - if let Ok(inner_box) = arc_box.try_lock() { - // InstanceBoxãªã‚‰fini()を呼ã³å‡ºã— - if let Some(instance) = inner_box.as_any().downcast_ref::() { - eprintln!("🔥 fini(): Cascading finalization to field '{}'", field_name); - if let Err(e) = instance.fini() { - eprintln!("🔥 fini(): Warning - failed to finalize field '{}': {}", field_name, e); - // エラーã¯è­¦å‘Šã¨ã—ã¦è¨˜éŒ²ã™ã‚‹ãŒã€ç¶šè¡Œã™ã‚‹ - } - } - } - } - _ => { - // non-Box値ã¯finiä¸è¦ - } - } - } - } - - Ok(()) - } - - /// 解放済ã¿ã‹ãƒã‚§ãƒƒã‚¯ - pub fn is_finalized(&self) -> bool { - *self.finalized.lock().unwrap() - } - - /// 🔥 解放中ã‹ãƒã‚§ãƒƒã‚¯ - pub fn is_in_finalization(&self) -> bool { - *self.in_finalization.lock().unwrap() - } - - /// 🔥 指定フィールドãŒweakã‹ãƒã‚§ãƒƒã‚¯ - pub fn is_weak_field(&self, field_name: &str) -> bool { - self.weak_fields_union.contains(field_name) - } -} - -impl NyashBox for InstanceBox { - fn to_string_box(&self) -> StringBox { - StringBox::new(format!("<{} instance #{}>", self.class_name, self.base.id)) - } - - fn equals(&self, other: &dyn NyashBox) -> BoolBox { - if let Some(other_instance) = other.as_any().downcast_ref::() { - // åŒã˜ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹IDãªã‚‰ç­‰ã—ã„ - BoolBox::new(self.base.id == other_instance.base.id) - } else { - BoolBox::new(false) - } - } - - fn type_name(&self) -> &'static str { - "InstanceBox" - } - - fn clone_box(&self) -> Box { - // インスタンスã¯åŒã˜ãƒ•ィールドを共有 - Box::new(self.clone()) - } - - /// 仮実装: clone_boxã¨åŒã˜ï¼ˆå¾Œã§ä¿®æ­£ï¼‰ - fn share_box(&self) -> Box { - self.clone_box() - } -} - -impl BoxCore for InstanceBox { - fn box_id(&self) -> u64 { - self.base.id - } - - fn parent_type_id(&self) -> Option { - self.base.parent_type_id - } - - fn fmt_box(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "<{} instance #{}>", self.class_name, self.base.id) - } - - fn as_any(&self) -> &dyn Any { - self - } - - fn as_any_mut(&mut self) -> &mut dyn Any { - self - } -} - -impl Display for InstanceBox { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - self.fmt_box(f) - } -} - -// ===== Tests ===== - -#[cfg(test)] -mod tests { - use super::*; - use crate::box_trait::IntegerBox; - - #[test] - fn test_instance_creation() { - let fields = vec!["x".to_string(), "y".to_string()]; - let methods = HashMap::new(); - let instance = InstanceBox::new("Point".to_string(), fields, methods); - - assert_eq!(instance.class_name, "Point"); - assert!(instance.get_field("x").is_some()); - assert!(instance.get_field("y").is_some()); - assert!(instance.get_field("z").is_none()); - } - - #[test] - fn test_field_access() { - let fields = vec!["value".to_string()]; - let methods = HashMap::new(); - let instance = InstanceBox::new("TestBox".to_string(), fields, methods); - - // フィールドã«å€¤ã‚’設定 - let int_value = Box::new(IntegerBox::new(42)) as Box; - instance.set_field("value", int_value).unwrap(); - - // フィールドã®å€¤ã‚’å–å¾— - let retrieved = instance.get_field("value").unwrap(); - let int_box = retrieved.as_any().downcast_ref::().unwrap(); - assert_eq!(int_box.value, 42); - } - - #[test] - fn test_instance_equality() { - let instance1 = InstanceBox::new("Test".to_string(), vec![], HashMap::new()); - let instance2 = InstanceBox::new("Test".to_string(), vec![], HashMap::new()); - - // ç•°ãªã‚‹ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ã¯ç­‰ã—ããªã„ - assert!(!instance1.equals(&instance2).value); - - // åŒã˜ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ã¯ç­‰ã—ã„ - assert!(instance1.equals(&instance1).value); - } -} \ No newline at end of file diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index 80cf096c..ae887e43 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -33,7 +33,7 @@ mod core; mod expressions; mod statements; mod functions; -mod objects; +pub mod objects; mod objects_basic_constructors; mod io; mod methods; diff --git a/src/interpreter/objects.rs b/src/interpreter/objects.rs deleted file mode 100644 index 22ae7aa1..00000000 --- a/src/interpreter/objects.rs +++ /dev/null @@ -1,1274 +0,0 @@ -/*! - * Object Processing Module - * - * Extracted from core.rs - object creation, construction, and inheritance - * Handles Box declarations, instantiation, constructors, and inheritance system - * Core philosophy: "Everything is Box" with complete OOP support - */ - -use super::*; -use crate::boxes::{NullBox, ConsoleBox, FloatBox, DateTimeBox, SocketBox, HTTPServerBox, HTTPRequestBox, HTTPResponseBox}; -// use crate::boxes::intent_box_wrapper::IntentBoxWrapper; -use crate::box_trait::SharedNyashBox; -use std::sync::Arc; - -impl NyashInterpreter { - /// newå¼ã‚’実行 - Object creation engine - pub(super) fn execute_new(&mut self, class: &str, arguments: &[ASTNode], type_arguments: &[String]) - -> Result, RuntimeError> { - - // 🭠Phase 9.78b: Try unified registry first - - // Convert ASTNode arguments to Box - let nyash_args: Result>, RuntimeError> = arguments.iter() - .map(|arg| self.execute_expression(arg)) - .collect(); - - match nyash_args { - Ok(args) => { - // Handle generics: if user-defined and type arguments provided, specialize declaration - let mut target_class = class.to_string(); - let user_defined_exists = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.contains_key(class) - }; - if user_defined_exists && !type_arguments.is_empty() { - let generic_decl = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.get(class).cloned() - }; - if let Some(generic_decl) = generic_decl { - // Validate and specialize - self.validate_generic_arguments(&generic_decl, type_arguments)?; - let specialized = self.specialize_generic_class(&generic_decl, type_arguments)?; - target_class = specialized.name.clone(); - // Insert specialized declaration so registry can create it - let mut box_decls = self.shared.box_declarations.write().unwrap(); - box_decls.insert(target_class.clone(), specialized); - } - } - - // Try unified registry (use interpreter's runtime registry to include user-defined boxes) - let registry = self.runtime.box_registry.clone(); - let registry_lock = registry.lock().unwrap(); - match registry_lock.create_box(&target_class, &args) { - Ok(box_instance) => { - - // Check if this is a user-defined box that needs constructor execution - if let Some(_instance_box) = box_instance.as_any().downcast_ref::() { - // This is a user-defined box, we need to execute its constructor - - // Check if we have a box declaration for this class - let (box_decl_opt, constructor_opt) = { - let box_decls = self.shared.box_declarations.read().unwrap(); - if let Some(box_decl) = box_decls.get(&target_class) { - // Find the birth constructor (unified constructor system) - let birth_key = format!("birth/{}", arguments.len()); - let constructor = box_decl.constructors.get(&birth_key).cloned(); - - (Some(box_decl.clone()), constructor) - } else { - (None, None) - } - }; - - if let Some(box_decl) = box_decl_opt { - if let Some(constructor) = constructor_opt { - // Execute the constructor - let instance_arc: SharedNyashBox = Arc::from(box_instance); - drop(registry_lock); // Release lock before executing constructor - self.execute_constructor(&instance_arc, &constructor, arguments, &box_decl)?; - return Ok((*instance_arc).clone_box()); - } else if arguments.is_empty() { - // No constructor needed for zero arguments - return Ok(box_instance); - } else { - return Err(RuntimeError::InvalidOperation { - message: format!("No constructor found for {} with {} arguments", target_class, arguments.len()), - }); - } - } - } - - // Not a user-defined box or no constructor needed - return Ok(box_instance); - }, - Err(e) => { - // Stop here: use unified registry result as source of truth - return Err(e); - } - } - }, - Err(e) => { - // Argument evaluation failed; propagate error - return Err(e); - } - } - - // Unified registry is authoritative; legacy implementation removed - // NOTE: Legacy constructor path below is unreachable and kept only for reference during migration. - // TODO(migration): remove legacy block after all callsites are confirmed on Unified Registry. - return Err(RuntimeError::UndefinedClass { name: class.to_string() }); - - // Try basic type constructors first - if let Ok(basic_box) = self.create_basic_box(class, arguments) { - return Ok(basic_box); - } - - // 組ã¿è¾¼ã¿Boxåž‹ã®ãƒã‚§ãƒƒã‚¯ (基本型以外) - eprintln!("🔠Starting built-in Box type checks..."); - match class { - // Basic types are handled by create_basic_box() above - "StringBox" | "IntegerBox" | "BoolBox" | "ArrayBox" | "ResultBox" | - "ErrorBox" | "NullBox" | "FloatBox" | "MapBox" => { - // These are handled by create_basic_box(), should not reach here - unreachable!("Basic type {} should have been handled by create_basic_box()", class); - } - - /* Basic types are now handled by create_basic_box() - keeping for reference */ - /* - "IntegerBox" => { - // IntegerBoxã¯å¼•æ•°1個(整数値)ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("IntegerBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let value = self.execute_expression(&arguments[0])?; - if let Some(int_box) = value.as_any().downcast_ref::() { - let integer_box = Box::new(IntegerBox::new(int_box.value)) as Box; - return Ok(integer_box); - } else { - // Try to parse from string or other types - let int_value = value.to_string_box().value.parse::() - .map_err(|_| RuntimeError::TypeError { - message: format!("Cannot convert '{}' to integer", value.to_string_box().value), - })?; - let integer_box = Box::new(IntegerBox::new(int_value)) as Box; - return Ok(integer_box); - } - } - "BoolBox" => { - // BoolBoxã¯å¼•æ•°1個(真å½å€¤ï¼‰ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("BoolBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let value = self.execute_expression(&arguments[0])?; - if let Some(bool_box) = value.as_any().downcast_ref::() { - let bool_box_new = Box::new(BoolBox::new(bool_box.value)) as Box; - return Ok(bool_box_new); - } else { - // Try to convert from string or other types - let bool_value = match value.to_string_box().value.to_lowercase().as_str() { - "true" => true, - "false" => false, - _ => return Err(RuntimeError::TypeError { - message: format!("Cannot convert '{}' to boolean", value.to_string_box().value), - }), - }; - let bool_box_new = Box::new(BoolBox::new(bool_value)) as Box; - return Ok(bool_box_new); - } - } - "ArrayBox" => { - // ArrayBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("ArrayBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let array_box = Box::new(ArrayBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(array_box); - } - "ResultBox" => { - // ResultBoxã¯å¼•æ•°1個(æˆåŠŸå€¤ï¼‰ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("ResultBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let value = self.execute_expression(&arguments[0])?; - let result_box = Box::new(ResultBox::new_success(value)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(result_box); - } - "ErrorBox" => { - // ErrorBoxã¯å¼•æ•°2個(エラータイプã€ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ï¼‰ã§ä½œæˆ - if arguments.len() != 2 { - return Err(RuntimeError::InvalidOperation { - message: format!("ErrorBox constructor expects 2 arguments, got {}", arguments.len()), - }); - } - let error_type_value = self.execute_expression(&arguments[0])?; - let message_value = self.execute_expression(&arguments[1])?; - - if let (Some(error_type_str), Some(message_str)) = ( - error_type_value.as_any().downcast_ref::(), - message_value.as_any().downcast_ref::() - ) { - let error_box = Box::new(ErrorBox::new(&error_type_str.value, &message_str.value)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(error_box); - } else { - return Err(RuntimeError::TypeError { - message: "ErrorBox constructor requires two string arguments".to_string(), - }); - } - } - */ - "MathBox" => { - // MathBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("MathBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let math_box = Box::new(MathBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(math_box); - } - "NullBox" => { - // NullBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("NullBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let null_box = Box::new(NullBox::new()) as Box; - return Ok(null_box); - } - "ConsoleBox" => { - // ConsoleBoxã¯å¼•æ•°ãªã—ã§ä½œæˆï¼ˆãƒ–ラウザconsole連æºç”¨ï¼‰ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("ConsoleBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let console_box = Box::new(ConsoleBox::new()) as Box; - return Ok(console_box); - } - // "IntentBox" => { - // // IntentBoxã¯å¼•æ•°ãªã—ã§ä½œæˆï¼ˆãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãƒã‚¹ï¼‰ - // if !arguments.is_empty() { - // return Err(RuntimeError::InvalidOperation { - // message: format!("IntentBox constructor expects 0 arguments, got {}", arguments.len()), - // }); - // } - // let intent_box = Arc::new(crate::boxes::IntentBox::new()); - // let intent_box_wrapped = Box::new(IntentBoxWrapper { - // inner: intent_box - // }) as Box; - // return Ok(intent_box_wrapped); - // } - // "P2PBox" => { - // // P2PBoxã¯å¼•æ•°2個(node_id, intent_box)ã§ä½œæˆ - // if arguments.len() != 2 { - // return Err(RuntimeError::InvalidOperation { - // message: format!("P2PBox constructor expects 2 arguments (node_id, intent_box), got {}", arguments.len()), - // }); - // } - // - // // node_id - // let node_id_value = self.execute_expression(&arguments[0])?; - // let node_id = if let Some(id_str) = node_id_value.as_any().downcast_ref::() { - // id_str.value.clone() - // } else { - // return Err(RuntimeError::TypeError { - // message: "P2PBox constructor requires string node_id as first argument".to_string(), - // }); - // }; - // - // // intent_box - // let intent_box_value = self.execute_expression(&arguments[1])?; - // let intent_box = if let Some(wrapper) = intent_box_value.as_any().downcast_ref::() { - // wrapper.inner.clone() - // } else { - // return Err(RuntimeError::TypeError { - // message: "P2PBox constructor requires IntentBox as second argument".to_string(), - // }); - // }; - // - // let p2p_box = Box::new(crate::boxes::P2PBox::new(node_id, intent_box)) as Box; - // return Ok(p2p_box); - // } - #[cfg(all(feature = "gui", not(target_arch = "wasm32")))] - "EguiBox" => { - // EguiBoxã¯å¼•æ•°ãªã—ã§ä½œæˆï¼ˆGUIアプリケーション用) - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("EguiBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let egui_box = Box::new(crate::boxes::EguiBox::new()) as Box; - return Ok(egui_box); - } - #[cfg(target_arch = "wasm32")] - "WebDisplayBox" => { - // WebDisplayBoxã¯å¼•æ•°1個(è¦ç´ ID)ã§ä½œæˆï¼ˆãƒ–ラウザHTMLæ“作用) - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("WebDisplayBox constructor expects 1 argument (element_id), got {}", arguments.len()), - }); - } - let element_id_value = self.execute_expression(&arguments[0])?; - if let Some(id_str) = element_id_value.as_any().downcast_ref::() { - let web_display_box = Box::new(crate::boxes::WebDisplayBox::new(id_str.value.clone())) as Box; - return Ok(web_display_box); - } else { - return Err(RuntimeError::TypeError { - message: "WebDisplayBox constructor requires string element_id argument".to_string(), - }); - } - } - #[cfg(target_arch = "wasm32")] - "WebConsoleBox" => { - // WebConsoleBoxã¯å¼•æ•°1個(è¦ç´ ID)ã§ä½œæˆï¼ˆãƒ–ラウザコンソール風出力用) - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("WebConsoleBox constructor expects 1 argument (element_id), got {}", arguments.len()), - }); - } - let element_id_value = self.execute_expression(&arguments[0])?; - if let Some(id_str) = element_id_value.as_any().downcast_ref::() { - let web_console_box = Box::new(crate::boxes::WebConsoleBox::new(id_str.value.clone())) as Box; - return Ok(web_console_box); - } else { - return Err(RuntimeError::TypeError { - message: "WebConsoleBox constructor requires string element_id argument".to_string(), - }); - } - } - #[cfg(target_arch = "wasm32")] - "WebCanvasBox" => { - // WebCanvasBoxã¯å¼•æ•°3個(canvas IDã€å¹…ã€é«˜ã•)ã§ä½œæˆ - if arguments.len() != 3 { - return Err(RuntimeError::InvalidOperation { - message: format!("WebCanvasBox constructor expects 3 arguments (canvas_id, width, height), got {}", arguments.len()), - }); - } - - // Canvas ID - let canvas_id_value = self.execute_expression(&arguments[0])?; - let canvas_id = if let Some(id_str) = canvas_id_value.as_any().downcast_ref::() { - id_str.value.clone() - } else { - return Err(RuntimeError::TypeError { - message: "WebCanvasBox constructor requires string canvas_id as first argument".to_string(), - }); - }; - - // Width - let width_value = self.execute_expression(&arguments[1])?; - let width = if let Some(int_box) = width_value.as_any().downcast_ref::() { - int_box.value as u32 - } else { - return Err(RuntimeError::TypeError { - message: "WebCanvasBox constructor requires integer width as second argument".to_string(), - }); - }; - - // Height - let height_value = self.execute_expression(&arguments[2])?; - let height = if let Some(int_box) = height_value.as_any().downcast_ref::() { - int_box.value as u32 - } else { - return Err(RuntimeError::TypeError { - message: "WebCanvasBox constructor requires integer height as third argument".to_string(), - }); - }; - - let web_canvas_box = Box::new(crate::boxes::WebCanvasBox::new(canvas_id, width, height)) as Box; - return Ok(web_canvas_box); - } - "FloatBox" => { - // FloatBoxã¯å¼•æ•°1個(数値)ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("FloatBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let value = self.execute_expression(&arguments[0])?; - if let Some(int_box) = value.as_any().downcast_ref::() { - let float_box = Box::new(FloatBox::new(int_box.value as f64)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(float_box); - } else if let Some(float_box) = value.as_any().downcast_ref::() { - let new_float_box = Box::new(FloatBox::new(float_box.value)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(new_float_box); - } else { - return Err(RuntimeError::TypeError { - message: "FloatBox constructor requires numeric argument".to_string(), - }); - } - } - "RangeBox" => { - // RangeBoxã¯å¼•æ•°2-3個(start, end, [step])ã§ä½œæˆ - if arguments.len() < 2 || arguments.len() > 3 { - return Err(RuntimeError::InvalidOperation { - message: format!("RangeBox constructor expects 2-3 arguments, got {}", arguments.len()), - }); - } - let start_value = self.execute_expression(&arguments[0])?; - let end_value = self.execute_expression(&arguments[1])?; - let step_value = if arguments.len() == 3 { - self.execute_expression(&arguments[2])? - } else { - Box::new(IntegerBox::new(1)) - }; - - if let (Some(start_int), Some(end_int), Some(step_int)) = ( - start_value.as_any().downcast_ref::(), - end_value.as_any().downcast_ref::(), - step_value.as_any().downcast_ref::() - ) { - let range_box = Box::new(RangeBox::new(start_int.value, end_int.value, step_int.value)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(range_box); - } else { - return Err(RuntimeError::TypeError { - message: "RangeBox constructor requires integer arguments".to_string(), - }); - } - } - "TimeBox" => { - // TimeBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("TimeBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let time_box = Box::new(TimeBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(time_box); - } - "DateTimeBox" => { - // DateTimeBoxã¯å¼•æ•°ãªã—ã§ç¾åœ¨æ™‚刻ã€ã¾ãŸã¯å¼•æ•°1個ã§ã‚¿ã‚¤ãƒ ã‚¹ã‚¿ãƒ³ãƒ— - match arguments.len() { - 0 => { - let datetime_box = Box::new(DateTimeBox::now()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(datetime_box); - } - 1 => { - let timestamp_value = self.execute_expression(&arguments[0])?; - if let Some(int_box) = timestamp_value.as_any().downcast_ref::() { - let datetime_box = Box::new(DateTimeBox::from_timestamp(int_box.value)) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(datetime_box); - } else { - return Err(RuntimeError::TypeError { - message: "DateTimeBox constructor requires integer timestamp".to_string(), - }); - } - } - _ => { - return Err(RuntimeError::InvalidOperation { - message: format!("DateTimeBox constructor expects 0-1 arguments, got {}", arguments.len()), - }); - } - } - } - "TimerBox" => { - // TimerBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("TimerBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let timer_box = Box::new(TimerBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(timer_box); - } - "MapBox" => { - // MapBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("MapBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let map_box = Box::new(MapBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(map_box); - } - "RandomBox" => { - // RandomBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("RandomBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let random_box = Box::new(RandomBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(random_box); - } - "SoundBox" => { - // SoundBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("SoundBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let sound_box = Box::new(SoundBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(sound_box); - } - "DebugBox" => { - // DebugBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("DebugBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let debug_box = Box::new(DebugBox::new()) as Box; - // 🌠é©å‘½çš„実装:Environment tracking廃止 - return Ok(debug_box); - } - "BufferBox" => { - // BufferBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("BufferBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let buffer_box = Box::new(crate::boxes::buffer::BufferBox::new()) as Box; - return Ok(buffer_box); - } - "RegexBox" => { - // RegexBoxã¯å¼•æ•°1個(パターン)ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("RegexBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let pattern_value = self.execute_expression(&arguments[0])?; - if let Some(pattern_str) = pattern_value.as_any().downcast_ref::() { - match crate::boxes::regex::RegexBox::new(&pattern_str.value) { - Ok(regex_box) => return Ok(Box::new(regex_box)), - Err(e) => return Err(RuntimeError::InvalidOperation { - message: format!("Invalid regex pattern: {}", e), - }), - } - } else { - return Err(RuntimeError::TypeError { - message: "RegexBox constructor requires string pattern argument".to_string(), - }); - } - } - "JSONBox" => { - // JSONBoxã¯å¼•æ•°1個(JSON文字列)ã§ä½œæˆ - if arguments.len() != 1 { - return Err(RuntimeError::InvalidOperation { - message: format!("JSONBox constructor expects 1 argument, got {}", arguments.len()), - }); - } - let json_value = self.execute_expression(&arguments[0])?; - if let Some(json_str) = json_value.as_any().downcast_ref::() { - match crate::boxes::json::JSONBox::from_str(&json_str.value) { - Ok(json_box) => return Ok(Box::new(json_box)), - Err(e) => return Err(RuntimeError::InvalidOperation { - message: format!("Invalid JSON: {}", e), - }), - } - } else { - return Err(RuntimeError::TypeError { - message: "JSONBox constructor requires string JSON argument".to_string(), - }); - } - } - - "IntentBox" => { - // IntentBoxã¯å¼•æ•°2個(name, payload)ã§ä½œæˆ - if arguments.len() != 2 { - return Err(RuntimeError::InvalidOperation { - message: format!("IntentBox constructor expects 2 arguments (name, payload), got {}", arguments.len()), - }); - } - - // メッセージå - let name_value = self.execute_expression(&arguments[0])?; - let name = if let Some(name_str) = name_value.as_any().downcast_ref::() { - name_str.value.clone() - } else { - return Err(RuntimeError::TypeError { - message: "IntentBox constructor requires string name as first argument".to_string(), - }); - }; - - // ペイロード(JSONå½¢å¼ï¼‰ - let payload_value = self.execute_expression(&arguments[1])?; - let payload = match payload_value.to_string_box().value.parse::() { - Ok(json) => json, - Err(_) => { - // 文字列ã¨ã—ã¦ä¿å­˜ - serde_json::Value::String(payload_value.to_string_box().value) - } - }; - - let intent_box = crate::boxes::intent_box::IntentBox::new(name, payload); - return Ok(Box::new(intent_box) as Box); - } - - "P2PBox" => { - // P2PBoxã¯å¼•æ•°2個(node_id, transport_type)ã§ä½œæˆ - if arguments.len() != 2 { - return Err(RuntimeError::InvalidOperation { - message: format!("P2PBox constructor expects 2 arguments (node_id, transport_type), got {}", arguments.len()), - }); - } - - // ノードID - let node_id_value = self.execute_expression(&arguments[0])?; - let _node_id = if let Some(id_str) = node_id_value.as_any().downcast_ref::() { - id_str.value.clone() - } else { - return Err(RuntimeError::TypeError { - message: "P2PBox constructor requires string node_id as first argument".to_string(), - }); - }; - - // トランスãƒãƒ¼ãƒˆç¨®é¡ž - let transport_value = self.execute_expression(&arguments[1])?; - let _transport_str = if let Some(t_str) = transport_value.as_any().downcast_ref::() { - t_str.value.clone() - } else { - return Err(RuntimeError::TypeError { - message: "P2PBox constructor requires string transport_type as second argument".to_string(), - }); - }; - - // TODO: Re-enable P2PBox after fixing transport/messaging imports - return Err(RuntimeError::TypeError { - message: "P2PBox temporarily disabled due to import issues".to_string(), - }); - } - "StreamBox" => { - // StreamBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("StreamBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let stream_box = Box::new(crate::boxes::stream::StreamBox::new()) as Box; - return Ok(stream_box); - } - "HTTPClientBox" => { - // HTTPClientBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("HTTPClientBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let http_box = Box::new(crate::boxes::http::HttpClientBox::new()) as Box; - return Ok(http_box); - } - "MethodBox" => { - // MethodBoxã¯å¼•æ•°2個(インスタンスã€ãƒ¡ã‚½ãƒƒãƒ‰å)ã§ä½œæˆ - if arguments.len() != 2 { - return Err(RuntimeError::InvalidOperation { - message: format!("MethodBox constructor expects 2 arguments (instance, method_name), got {}", arguments.len()), - }); - } - - // インスタンスを評価 - let instance = self.execute_expression(&arguments[0])?; - - // メソッドåを評価 - let method_name_value = self.execute_expression(&arguments[1])?; - if let Some(method_name_str) = method_name_value.as_any().downcast_ref::() { - let method_box = Box::new(MethodBox::new(instance, method_name_str.value.clone())) as Box; - return Ok(method_box); - } else { - return Err(RuntimeError::TypeError { - message: "MethodBox constructor requires string method name as second argument".to_string(), - }); - } - } - "SocketBox" => { - // SocketBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("SocketBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let socket_box = Box::new(SocketBox::new()) as Box; - return Ok(socket_box); - } - "HTTPServerBox" => { - // HTTPServerBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("HTTPServerBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let http_server_box = Box::new(HTTPServerBox::new()) as Box; - return Ok(http_server_box); - } - "HTTPRequestBox" => { - // HTTPRequestBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("HTTPRequestBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let http_request_box = Box::new(HTTPRequestBox::new()) as Box; - return Ok(http_request_box); - } - "HTTPResponseBox" => { - // HTTPResponseBoxã¯å¼•æ•°ãªã—ã§ä½œæˆ - if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("HTTPResponseBox constructor expects 0 arguments, got {}", arguments.len()), - }); - } - let http_response_box = Box::new(HTTPResponseBox::new()) as Box; - return Ok(http_response_box); - } - _ => {} - } - - // 🔥 Static Boxã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹åŒ–ç¦æ­¢ãƒã‚§ãƒƒã‚¯ - if self.is_static_box(class) { - return Err(RuntimeError::InvalidOperation { - message: format!("Cannot instantiate static box '{}'. Static boxes cannot be instantiated.", class), - }); - } - - /* v2 plugin system migration - old BID registry disabled - // 🚀 プラグインレジストリをãƒã‚§ãƒƒã‚¯ï¼ˆnyash.tomlã‹ã‚‰å‹•的) - let plugin_exists = if let Some(reg) = crate::bid::registry::global() { - reg.get_by_name(class).is_some() - } else { - false - }; - - // ユーザー定義Box宣言をãƒã‚§ãƒƒã‚¯ - let user_defined_exists = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.contains_key(class) - }; - - // 🚨 é‡è¤‡ãƒã‚§ãƒƒã‚¯ - プラグインã¨ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©ã®ä¸¡æ–¹ã«å­˜åœ¨ã—ãŸã‚‰ã‚¨ãƒ©ãƒ¼ - if plugin_exists && user_defined_exists { - return Err(RuntimeError::InvalidOperation { - message: format!("Box type '{}' is defined both as a plugin and user-defined class. This is not allowed.", class), - }); - } - - // プラグイン版ã®å‡¦ç† - if plugin_exists { - if let Some(reg) = crate::bid::registry::global() { - if let Some(plugin) = reg.get_by_name(class) { - */ - - // ユーザー定義Box宣言をãƒã‚§ãƒƒã‚¯ - let user_defined_exists = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.contains_key(class) - }; - /* continuing old BID registry code - disabled for v2 - // プラグイン版:引数ãªã—ã§birthメソッド呼ã³å‡ºã—(nyash.tomlã«å¾“ã†ï¼‰ - if arguments.len() == 0 { - // 汎用プラグインBox生æˆã‚·ã‚¹ãƒ†ãƒ  - if let Ok(generic_box) = crate::bid::GenericPluginBox::birth(plugin, class.to_string()) { - return Ok(Box::new(generic_box) as Box); - } else { - return Err(RuntimeError::InvalidOperation { - message: format!("Failed to create plugin Box '{}'", class), - }); - } - } else { - return Err(RuntimeError::InvalidOperation { - message: format!("Plugin Box '{}' expects 0 arguments for birth(), got {}", class, arguments.len()), - }); - } - } - } - } - */ - - // ユーザー定義Box宣言を探㙠- if user_defined_exists { - let box_decl = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.get(class).unwrap().clone() - }; - - // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹å¼•æ•°ã®æ¤œè¨¼ - if !box_decl.type_parameters.is_empty() || !type_arguments.is_empty() { - self.validate_generic_arguments(&box_decl, type_arguments)?; - } - - // インターフェースã¯ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹åŒ–ã§ããªã„ - if box_decl.is_interface { - return Err(RuntimeError::InvalidOperation { - message: format!("Cannot instantiate interface '{}'", class), - }); - } - - // 🚀 ジェãƒãƒªã‚¯ã‚¹åž‹ã®ç‰¹æ®ŠåŒ–å‡¦ç† - let (final_box_decl, actual_class_name) = if !type_arguments.is_empty() { - // ジェãƒãƒªã‚¯ã‚¹åž‹ã‚’特殊化 - let specialized = self.specialize_generic_class(&box_decl, type_arguments)?; - let specialized_name = specialized.name.clone(); - (specialized, specialized_name) - } else { - (box_decl.clone(), class.to_string()) - }; - - // 継承ãƒã‚§ãƒ¼ãƒ³ã‚’解決ã—ã¦ãƒ•ィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’åŽé›†ï¼ˆinit_fieldsã‚‚å«ã‚€ï¼‰ - let (all_fields, all_methods) = self.resolve_inheritance(&final_box_decl)?; - - // 🔥 フィールド順åºã¨ weak フィールドを準備(finiシステム用) - let init_field_order = final_box_decl.init_fields.clone(); - let weak_fields = final_box_decl.weak_fields.clone(); - - // インスタンスを作æˆï¼ˆEnhanced fini system対応) - let instance = InstanceBox::new_with_box_info( - actual_class_name.clone(), - all_fields, - all_methods, - init_field_order, - weak_fields - ); - - let instance_box = Box::new(instance) as Box; - - // ç¾åœ¨ã®ã‚¹ã‚³ãƒ¼ãƒ—ã§Boxを追跡(自動解放ã®ãŸã‚) - // 🌠é©å‘½çš„実装:Environment tracking廃止 - - // Create Arc outside if block so it's available in all scopes - let instance_arc: Arc = Arc::from(instance_box); - - // プラグイン親(extendsã«å«ã¾ã‚Œã‚‹å ´åˆï¼‰ã®ç”Ÿæˆã¨ä¿æŒï¼ˆ__plugin_content) - #[cfg(all(feature = "plugins", not(target_arch = "wasm32")))] - { - use crate::runtime::get_global_loader_v2; - use crate::box_trait::SharedNyashBox; - let loader = get_global_loader_v2(); - let loader = loader.read().unwrap(); - if !final_box_decl.extends.is_empty() { - for parent in &final_box_decl.extends { - if let Ok(plugin_box) = loader.create_box(parent, &[]) { - if let Some(inst) = (&*instance_arc).as_any().downcast_ref::() { - let shared: SharedNyashBox = Arc::from(plugin_box); - let _ = inst.set_field_legacy("__plugin_content", shared); - } - break; - } - } - } - } - - // コンストラクタを呼ã³å‡ºã™ - // 🌟 birth()統一システム: "birth/引数数"ã®ã¿ã‚’許å¯ï¼ˆBoxåコンストラクタ無効化) - let birth_key = format!("birth/{}", arguments.len()); - - if let Some(constructor) = final_box_decl.constructors.get(&birth_key) { - // コンストラクタを実行 - self.execute_constructor(&instance_arc, constructor, arguments, &final_box_decl)?; - } else if !arguments.is_empty() { - return Err(RuntimeError::InvalidOperation { - message: format!("No constructor found for {} with {} arguments", class, arguments.len()), - }); - } - - return Ok((*instance_arc).clone_box()); // Convert Arc back to Box for external interface - } - - // 🔌 v2プラグインシステム: BoxFactoryRegistryã‚’ãƒã‚§ãƒƒã‚¯ - eprintln!("🔠Checking v2 plugin system for class: {}", class); - use crate::runtime::get_global_registry; - let registry = get_global_registry(); - eprintln!("🔠Got global registry"); - - if let Some(_provider) = registry.get_provider(class) { - eprintln!("🔠Found provider for {}, processing {} arguments", class, arguments.len()); - // BoxFactoryRegistry経由ã§Boxを生æˆï¼ˆv2プラグインシステム) - let nyash_args: Vec> = arguments.iter() - .map(|arg| { - eprintln!("🔠Processing argument: {:?}", arg); - self.execute_expression(arg) - }) - .collect::, _>>()?; - - eprintln!("🔠Arguments processed, calling registry.create_box"); - match registry.create_box(class, &nyash_args) { - Ok(plugin_box) => { - eprintln!("🔠Plugin box created successfully!"); - return Ok(plugin_box); - }, - Err(e) => { - eprintln!("🔠Plugin box creation failed: {}", e); - return Err(RuntimeError::InvalidOperation { - message: format!("Failed to create {} via plugin: {}", class, e), - }); - } - } - } - eprintln!("🔠No provider found for {}", class); - - // プラグインもユーザー定義も見ã¤ã‹ã‚‰ãªã‹ã£ãŸå ´åˆ - return Err(RuntimeError::UndefinedClass { name: class.to_string() }); - } - - /// コンストラクタを実行 - Constructor execution - pub(super) fn execute_constructor( - &mut self, - instance: &SharedNyashBox, - constructor: &ASTNode, - arguments: &[ASTNode], - box_decl: &BoxDeclaration - ) -> Result<(), RuntimeError> { - if let ASTNode::FunctionDeclaration { name: _, params, body, .. } = constructor { - // 引数を評価 - let mut arg_values = Vec::new(); - for arg in arguments { - arg_values.push(self.execute_expression(arg)?); - } - - // パラメータ数ãƒã‚§ãƒƒã‚¯ - if params.len() != arg_values.len() { - return Err(RuntimeError::InvalidOperation { - message: format!("Constructor expects {} arguments, got {}", params.len(), arg_values.len()), - }); - } - - // 🌠é©å‘½çš„コンストラクタ実行:local変数スタックを使用 - let saved_locals = self.save_local_vars(); - self.local_vars.clear(); - - // パラメータをlocal変数ã¨ã—ã¦è¨­å®š - for (param, value) in params.iter().zip(arg_values.iter()) { - self.declare_local_variable(param, value.clone_or_share()); - } - - // this(me)をlocal変数ã¨ã—ã¦è¨­å®š - self.declare_local_variable("me", instance.clone_or_share()); - - // コンストラクタコンテキストを設定 - let old_context = self.current_constructor_context.clone(); - self.current_constructor_context = Some(ConstructorContext { - class_name: box_decl.name.clone(), - parent_class: box_decl.extends.first().cloned(), // Use first parent for context - }); - - // コンストラクタを実行 - let mut result = Ok(()); - for statement in body.iter() { - if let Err(e) = self.execute_statement(statement) { - result = Err(e); - break; - } - } - - // local変数スタックã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆã‚’復元 - self.restore_local_vars(saved_locals); - self.current_constructor_context = old_context; - - result - } else { - Err(RuntimeError::InvalidOperation { - message: "Invalid constructor node".to_string(), - }) - } - } - - /// Box宣言を登録 - 🔥 コンストラクタオーãƒãƒ¼ãƒ­ãƒ¼ãƒ‰ç¦æ­¢å¯¾å¿œ - pub(super) fn register_box_declaration( - &mut self, - name: String, - fields: Vec, - public_fields: Vec, - private_fields: Vec, - methods: HashMap, - constructors: HashMap, - init_fields: Vec, - weak_fields: Vec, // 🔗 weak修飾å­ãŒä»˜ã„ãŸãƒ•ィールドã®ãƒªã‚¹ãƒˆ - is_interface: bool, - extends: Vec, // 🚀 Multi-delegation: Changed from Option to Vec - implements: Vec, - type_parameters: Vec // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹ãƒ‘ラメータ追加 - ) -> Result<(), RuntimeError> { - - // 🛠DEBUG: birth()コンストラクタキーã®ç¢ºèª - if !constructors.is_empty() { - eprintln!("🛠DEBUG: Registering Box '{}' with constructors: {:?}", name, constructors.keys().collect::>()); - } - - // 🚨 コンストラクタオーãƒãƒ¼ãƒ­ãƒ¼ãƒ‰ç¦æ­¢ï¼šè¤‡æ•°ã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿æ¤œå‡º - if constructors.len() > 1 { - let constructor_names: Vec = constructors.keys().cloned().collect(); - return Err(RuntimeError::InvalidOperation { - message: format!( - "🚨 CONSTRUCTOR OVERLOAD FORBIDDEN: Box '{}' has {} constructors: [{}].\n\ - 🌟 Nyash's explicit philosophy: One Box, One Constructor!\n\ - 💡 Use different Box classes for different initialization patterns.\n\ - 📖 Example: UserBox, AdminUserBox, GuestUserBox instead of User(type)", - name, - constructors.len(), - constructor_names.join(", ") - ) - }); - } - let box_decl = super::BoxDeclaration { - name: name.clone(), - fields, - public_fields, - private_fields, - methods, - constructors, - init_fields, - weak_fields, // 🔗 Add weak_fields to the construction - is_interface, - extends, - implements, - type_parameters, // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹ãƒ‘ラメータを正ã—ã使用 - }; - - { - let mut box_decls = self.shared.box_declarations.write().unwrap(); - box_decls.insert(name, box_decl); - } - - Ok(()) // 🔥 正常終了 - } - - /// 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹å¼•æ•°ã®æ¤œè¨¼ - fn validate_generic_arguments(&self, box_decl: &BoxDeclaration, type_arguments: &[String]) - -> Result<(), RuntimeError> { - // 型パラメータã¨åž‹å¼•æ•°ã®æ•°ãŒä¸€è‡´ã™ã‚‹ã‹ãƒã‚§ãƒƒã‚¯ - if box_decl.type_parameters.len() != type_arguments.len() { - return Err(RuntimeError::TypeError { - message: format!( - "Generic class '{}' expects {} type parameters, got {}. Expected: <{}>, Got: <{}>", - box_decl.name, - box_decl.type_parameters.len(), - type_arguments.len(), - box_decl.type_parameters.join(", "), - type_arguments.join(", ") - ), - }); - } - - // 型引数ãŒã‚¸ã‚§ãƒãƒªã‚¯ã‚¹ã§ãªã„å ´åˆã€åž‹ãƒ‘ラメータãŒã‚ã£ã¦ã¯ãªã‚‰ãªã„ - if box_decl.type_parameters.is_empty() && !type_arguments.is_empty() { - return Err(RuntimeError::TypeError { - message: format!( - "Class '{}' is not generic, but got type arguments <{}>", - box_decl.name, - type_arguments.join(", ") - ), - }); - } - - // å„åž‹å¼•æ•°ãŒæœ‰åйãªBoxåž‹ã‹ãƒã‚§ãƒƒã‚¯ï¼ˆåŸºæœ¬åž‹ã®ã¿ãƒã‚§ãƒƒã‚¯ï¼‰ - for type_arg in type_arguments { - if !self.is_valid_type(type_arg) { - return Err(RuntimeError::TypeError { - message: format!("Unknown type '{}'", type_arg), - }); - } - } - - Ok(()) - } - - /// åž‹ãŒæœ‰åйã‹ã©ã†ã‹ã‚’ãƒã‚§ãƒƒã‚¯ - fn is_valid_type(&self, type_name: &str) -> bool { - // Check unified registry for builtin/plugin/user factories - if let Ok(reg) = self.runtime.box_registry.lock() { - if reg.has_type(type_name) { return true; } - } - // Or user-declared boxes in current program - self.shared.box_declarations.read().unwrap().contains_key(type_name) - } - - /// 親コンストラクタを実行 - Parent constructor execution - pub(super) fn execute_parent_constructor(&mut self, parent_class: &str, arguments: &[ASTNode]) - -> Result, RuntimeError> { - // 親クラスã®å®£è¨€ã‚’å–å¾— - let parent_decl = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.get(parent_class) - .ok_or(RuntimeError::UndefinedClass { name: parent_class.to_string() })? - .clone() - }; - - // 親コンストラクタを探㙠(birth統一システム) - let birth_key = format!("birth/{}", arguments.len()); - - if let Some(parent_constructor) = parent_decl.constructors.get(&birth_key) { - // ç¾åœ¨ã®thiså‚ç…§ã‚’å–å¾— - // 🌠é©å‘½çš„thiså–得:local変数ã‹ã‚‰ - let this_instance = self.resolve_variable("me") - .map_err(|_| RuntimeError::InvalidOperation { - message: "'this' not available in parent constructor call".to_string(), - })?; - - // 親コンストラクタを実行 - self.execute_constructor(&this_instance, parent_constructor, arguments, &parent_decl)?; - - // VoidBoxã‚’è¿”ã™ï¼ˆã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿å‘¼ã³å‡ºã—ã¯å€¤ã‚’è¿”ã•ãªã„) - Ok(Box::new(VoidBox::new())) - } else { - Err(RuntimeError::InvalidOperation { - message: format!("No constructor found for parent class {} with {} arguments", parent_class, arguments.len()), - }) - } - } - - /// 継承ãƒã‚§ãƒ¼ãƒ³ã‚’解決ã—ã¦ãƒ•ィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’åŽé›† - Inheritance resolution - pub(super) fn resolve_inheritance(&self, box_decl: &BoxDeclaration) - -> Result<(Vec, HashMap), RuntimeError> { - let mut all_fields = Vec::new(); - let mut all_methods = HashMap::new(); - - // 親クラスã®ç¶™æ‰¿ãƒã‚§ãƒ¼ãƒ³ã‚’å†å¸°çš„ã«è§£æ±º (Multi-delegation) 🚀 - for parent_name in &box_decl.extends { - // 🔥 Phase 8.8: pack逿˜ŽåŒ–システム - ビルトインBox判定 - use crate::box_trait::is_builtin_box; - - let is_builtin = is_builtin_box(parent_name); - - // GUIæ©Ÿèƒ½ãŒæœ‰åйãªå ´åˆã¯EguiBoxも追加判定 - #[cfg(all(feature = "gui", not(target_arch = "wasm32")))] - { - if parent_name == "EguiBox" { - is_builtin = true; - } - } - - if is_builtin { - // ビルトインBoxã®å ´åˆã€ãƒ•ィールドやメソッドã¯ç¶™æ‰¿ã—ãªã„ - // (ビルトインBoxã®ãƒ¡ã‚½ãƒƒãƒ‰ã¯fromæ§‹æ–‡ã§ã‚¢ã‚¯ã‚»ã‚¹å¯èƒ½ï¼‰ - } else { - let parent_decl = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.get(parent_name) - .ok_or(RuntimeError::UndefinedClass { name: parent_name.to_string() })? - .clone() - }; - - // インターフェースã¯ç¶™æ‰¿ã§ããªã„ - if parent_decl.is_interface { - return Err(RuntimeError::InvalidOperation { - message: format!("Cannot extend interface '{}'. Use 'implements' instead.", parent_name), - }); - } - - // 親クラスã®ç¶™æ‰¿ãƒã‚§ãƒ¼ãƒ³ã‚’å†å¸°çš„ã«è§£æ±º - let (parent_fields, parent_methods) = self.resolve_inheritance(&parent_decl)?; - - // 親ã®ãƒ•ィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’追加 - all_fields.extend(parent_fields); - all_methods.extend(parent_methods); - } - } - - // ç¾åœ¨ã®ã‚¯ãƒ©ã‚¹ã®ãƒ•ィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’追加(オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰å¯èƒ½ï¼‰ - all_fields.extend(box_decl.fields.clone()); - - // init_fieldsも追加(é‡è¤‡ãƒã‚§ãƒƒã‚¯ï¼‰ - for init_field in &box_decl.init_fields { - if !all_fields.contains(init_field) { - all_fields.push(init_field.clone()); - } - } - - for (method_name, method_ast) in &box_decl.methods { - all_methods.insert(method_name.clone(), method_ast.clone()); // オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ - } - - // ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹å®Ÿè£…ã®æ¤œè¨¼ - for interface_name in &box_decl.implements { - let interface_decl = { - let box_decls = self.shared.box_declarations.read().unwrap(); - box_decls.get(interface_name) - .ok_or(RuntimeError::UndefinedClass { name: interface_name.clone() })? - .clone() - }; - - if !interface_decl.is_interface { - return Err(RuntimeError::InvalidOperation { - message: format!("'{}' is not an interface", interface_name), - }); - } - - // インターフェースã®å…¨ãƒ¡ã‚½ãƒƒãƒ‰ãŒå®Ÿè£…ã•れã¦ã„ã‚‹ã‹ãƒã‚§ãƒƒã‚¯ - for (required_method, _) in &interface_decl.methods { - if !all_methods.contains_key(required_method) { - return Err(RuntimeError::InvalidOperation { - message: format!("Class '{}' must implement method '{}' from interface '{}'", - box_decl.name, required_method, interface_name), - }); - } - } - } - - Ok((all_fields, all_methods)) - } - - /// 🚀 ジェãƒãƒªã‚¯ã‚¹åž‹ã‚’特殊化ã—ã¦BoxDeclarationã‚’ç”Ÿæˆ - fn specialize_generic_class( - &self, - generic_decl: &BoxDeclaration, - type_arguments: &[String] - ) -> Result { - use std::collections::HashMap; - - // 特殊化ã•れãŸã‚¯ãƒ©ã‚¹åã‚’ç”Ÿæˆ - let specialized_name = format!( - "{}_{}", - generic_decl.name, - type_arguments.join("_") - ); - - // 型パラメータ → 具体型ã®ãƒžãƒƒãƒ”ãƒ³ã‚°ã‚’ä½œæˆ - let mut type_mapping = HashMap::new(); - for (i, param) in generic_decl.type_parameters.iter().enumerate() { - type_mapping.insert(param.clone(), type_arguments[i].clone()); - } - - // 特殊化ã•れãŸBoxDeclarationã‚’ä½œæˆ - let mut specialized = generic_decl.clone(); - specialized.name = specialized_name.clone(); - specialized.type_parameters.clear(); // 特殊化後ã¯åž‹ãƒ‘ラメータãªã— - - // 🔄 フィールドã®åž‹ã‚’ç½®æ› - specialized.init_fields = self.substitute_types_in_fields( - &specialized.init_fields, - &type_mapping - ); - - // 🔧 コンストラクタキーを新ã—ã„クラスåã§æ›´æ–° - let mut updated_constructors = HashMap::new(); - for (old_key, constructor_node) in &generic_decl.constructors { - // "Container/1" -> "Container_IntegerBox/1" ã«å¤‰æ›´ - if let Some(args_count) = old_key.split('/').nth(1) { - let new_key = format!("{}/{}", specialized_name, args_count); - updated_constructors.insert(new_key, constructor_node.clone()); - } - } - specialized.constructors = updated_constructors; - - // 🔄 メソッドã®åž‹ã‚’ç½®æ›ï¼ˆç¾åœ¨ã¯ãƒ—レースホルダー実装) - // TODO: メソッド内部ã®ã‚³ãƒ¼ãƒ‰ã‚‚ç½®æ›ãŒå¿…è¦ - - Ok(specialized) - } - - /// フィールドã®åž‹ç½®æ› - fn substitute_types_in_fields( - &self, - fields: &[String], - _type_mapping: &HashMap - ) -> Vec { - // TODO: フィールド型ã®ç½®æ›å®Ÿè£… - // ç¾åœ¨ã¯ã‚·ãƒ³ãƒ—ルã«ã‚³ãƒ”ー - fields.to_vec() - } -} diff --git a/src/interpreter/objects/fields.rs b/src/interpreter/objects/fields.rs new file mode 100644 index 00000000..286eb97b --- /dev/null +++ b/src/interpreter/objects/fields.rs @@ -0,0 +1,193 @@ +use super::*; + +impl NyashInterpreter { + /// Box宣言を登録 - 🔥 コンストラクタオーãƒãƒ¼ãƒ­ãƒ¼ãƒ‰ç¦æ­¢å¯¾å¿œ + pub(crate) fn register_box_declaration( + &mut self, + name: String, + fields: Vec, + public_fields: Vec, + private_fields: Vec, + methods: HashMap, + constructors: HashMap, + init_fields: Vec, + weak_fields: Vec, + is_interface: bool, + extends: Vec, + implements: Vec, + type_parameters: Vec + ) -> Result<(), RuntimeError> { + if !constructors.is_empty() { + eprintln!("🛠DEBUG: Registering Box '{}' with constructors: {:?}", name, constructors.keys().collect::>()); + } + if constructors.len() > 1 { + let constructor_names: Vec = constructors.keys().cloned().collect(); + return Err(RuntimeError::InvalidOperation { + message: format!( + "🚨 CONSTRUCTOR OVERLOAD FORBIDDEN: Box '{}' has {} constructors: [{}].\n\ + 🌟 Nyash's explicit philosophy: One Box, One Constructor!\n\ + 💡 Use different Box classes for different initialization patterns.\n\ + 📖 Example: UserBox, AdminUserBox, GuestUserBox instead of User(type)", + name, + constructors.len(), + constructor_names.join(", ") + ) + }); + } + let box_decl = super::BoxDeclaration { + name: name.clone(), + fields, + public_fields, + private_fields, + methods, + constructors, + init_fields, + weak_fields, + is_interface, + extends, + implements, + type_parameters, + }; + { + let mut box_decls = self.shared.box_declarations.write().unwrap(); + box_decls.insert(name, box_decl); + } + Ok(()) + } + + /// 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹å¼•æ•°ã®æ¤œè¨¼ + pub(super) fn validate_generic_arguments(&self, box_decl: &BoxDeclaration, type_arguments: &[String]) + -> Result<(), RuntimeError> { + if box_decl.type_parameters.len() != type_arguments.len() { + return Err(RuntimeError::TypeError { + message: format!( + "Generic class '{}' expects {} type parameters, got {}. Expected: <{}>, Got: <{}>", + box_decl.name, + box_decl.type_parameters.len(), + type_arguments.len(), + box_decl.type_parameters.join(", "), + type_arguments.join(", ") + ), + }); + } + if box_decl.type_parameters.is_empty() && !type_arguments.is_empty() { + return Err(RuntimeError::TypeError { + message: format!( + "Class '{}' is not generic, but got type arguments <{}>", + box_decl.name, + type_arguments.join(", ") + ), + }); + } + for type_arg in type_arguments { + if !self.is_valid_type(type_arg) { + return Err(RuntimeError::TypeError { message: format!("Unknown type '{}'", type_arg) }); + } + } + Ok(()) + } + + /// åž‹ãŒæœ‰åйã‹ã©ã†ã‹ã‚’ãƒã‚§ãƒƒã‚¯ + fn is_valid_type(&self, type_name: &str) -> bool { + if let Ok(reg) = self.runtime.box_registry.lock() { + if reg.has_type(type_name) { return true; } + } + self.shared.box_declarations.read().unwrap().contains_key(type_name) + } + + /// 継承ãƒã‚§ãƒ¼ãƒ³ã‚’解決ã—ã¦ãƒ•ィールドã¨ãƒ¡ã‚½ãƒƒãƒ‰ã‚’åŽé›† - Inheritance resolution + pub(crate) fn resolve_inheritance(&self, box_decl: &BoxDeclaration) + -> Result<(Vec, HashMap), RuntimeError> { + let mut all_fields = Vec::new(); + let mut all_methods = HashMap::new(); + for parent_name in &box_decl.extends { + use crate::box_trait::is_builtin_box; + let mut is_builtin = is_builtin_box(parent_name); + #[cfg(all(feature = "gui", not(target_arch = "wasm32")))] + { + if parent_name == "EguiBox" { is_builtin = true; } + } + if is_builtin { + // skip builtin inheritance + } else { + let parent_decl = { + let box_decls = self.shared.box_declarations.read().unwrap(); + box_decls.get(parent_name) + .ok_or(RuntimeError::UndefinedClass { name: parent_name.to_string() })? + .clone() + }; + if parent_decl.is_interface { + return Err(RuntimeError::InvalidOperation { + message: format!("Cannot extend interface '{}'. Use 'implements' instead.", parent_name), + }); + } + let (parent_fields, parent_methods) = self.resolve_inheritance(&parent_decl)?; + all_fields.extend(parent_fields); + all_methods.extend(parent_methods); + } + } + all_fields.extend(box_decl.fields.clone()); + for init_field in &box_decl.init_fields { + if !all_fields.contains(init_field) { all_fields.push(init_field.clone()); } + } + for (method_name, method_ast) in &box_decl.methods { + all_methods.insert(method_name.clone(), method_ast.clone()); + } + for interface_name in &box_decl.implements { + let interface_decl = { + let box_decls = self.shared.box_declarations.read().unwrap(); + box_decls.get(interface_name) + .ok_or(RuntimeError::UndefinedClass { name: interface_name.clone() })? + .clone() + }; + if !interface_decl.is_interface { + return Err(RuntimeError::InvalidOperation { message: format!("'{}' is not an interface", interface_name) }); + } + for (required_method, _) in &interface_decl.methods { + if !all_methods.contains_key(required_method) { + return Err(RuntimeError::InvalidOperation { + message: format!("Class '{}' must implement method '{}' from interface '{}'", + box_decl.name, required_method, interface_name), + }); + } + } + } + Ok((all_fields, all_methods)) + } + + /// 🚀 ジェãƒãƒªã‚¯ã‚¹åž‹ã‚’特殊化ã—ã¦BoxDeclarationã‚’ç”Ÿæˆ + pub(super) fn specialize_generic_class( + &self, + generic_decl: &BoxDeclaration, + type_arguments: &[String] + ) -> Result { + use std::collections::HashMap; + let specialized_name = format!("{}_{}", generic_decl.name, type_arguments.join("_")); + let mut type_mapping = HashMap::new(); + for (i, param) in generic_decl.type_parameters.iter().enumerate() { + type_mapping.insert(param.clone(), type_arguments[i].clone()); + } + let mut specialized = generic_decl.clone(); + specialized.name = specialized_name.clone(); + specialized.type_parameters.clear(); + specialized.init_fields = self.substitute_types_in_fields(&specialized.init_fields, &type_mapping); + let mut updated_constructors = HashMap::new(); + for (old_key, constructor_node) in &generic_decl.constructors { + if let Some(args_count) = old_key.split('/').nth(1) { + let new_key = format!("{}/{}", specialized_name, args_count); + updated_constructors.insert(new_key, constructor_node.clone()); + } + } + specialized.constructors = updated_constructors; + Ok(specialized) + } + + /// フィールドã®åž‹ç½®æ›ï¼ˆç¾çжã¯ãã®ã¾ã¾ï¼‰ + pub(super) fn substitute_types_in_fields( + &self, + fields: &[String], + _type_mapping: &HashMap + ) -> Vec { + fields.to_vec() + } +} diff --git a/src/interpreter/objects/methods.rs b/src/interpreter/objects/methods.rs new file mode 100644 index 00000000..5e59cb17 --- /dev/null +++ b/src/interpreter/objects/methods.rs @@ -0,0 +1,66 @@ +use super::*; +use crate::box_trait::SharedNyashBox; + +impl NyashInterpreter { + /// コンストラクタを実行 - Constructor execution + pub(super) fn execute_constructor( + &mut self, + instance: &SharedNyashBox, + constructor: &ASTNode, + arguments: &[ASTNode], + box_decl: &BoxDeclaration + ) -> Result<(), RuntimeError> { + if let ASTNode::FunctionDeclaration { name: _, params, body, .. } = constructor { + let mut arg_values = Vec::new(); + for arg in arguments { arg_values.push(self.execute_expression(arg)?); } + if params.len() != arg_values.len() { + return Err(RuntimeError::InvalidOperation { + message: format!("Constructor expects {} arguments, got {}", params.len(), arg_values.len()), + }); + } + let saved_locals = self.save_local_vars(); + self.local_vars.clear(); + for (param, value) in params.iter().zip(arg_values.iter()) { + self.declare_local_variable(param, value.clone_or_share()); + } + self.declare_local_variable("me", instance.clone_or_share()); + let old_context = self.current_constructor_context.clone(); + self.current_constructor_context = Some(ConstructorContext { + class_name: box_decl.name.clone(), + parent_class: box_decl.extends.first().cloned(), + }); + let mut result = Ok(()); + for statement in body.iter() { + if let Err(e) = self.execute_statement(statement) { result = Err(e); break; } + } + self.restore_local_vars(saved_locals); + self.current_constructor_context = old_context; + result + } else { + Err(RuntimeError::InvalidOperation { message: "Invalid constructor node".to_string() }) + } + } + + /// 親コンストラクタを実行 - Parent constructor execution + pub(crate) fn execute_parent_constructor(&mut self, parent_class: &str, arguments: &[ASTNode]) + -> Result, RuntimeError> { + let parent_decl = { + let box_decls = self.shared.box_declarations.read().unwrap(); + box_decls.get(parent_class) + .ok_or(RuntimeError::UndefinedClass { name: parent_class.to_string() })? + .clone() + }; + let birth_key = format!("birth/{}", arguments.len()); + if let Some(parent_constructor) = parent_decl.constructors.get(&birth_key) { + let this_instance = self.resolve_variable("me").map_err(|_| RuntimeError::InvalidOperation { + message: "'this' not available in parent constructor call".to_string(), + })?; + self.execute_constructor(&this_instance, parent_constructor, arguments, &parent_decl)?; + Ok(Box::new(VoidBox::new())) + } else { + Err(RuntimeError::InvalidOperation { + message: format!("No constructor found for parent class {} with {} arguments", parent_class, arguments.len()), + }) + } + } +} diff --git a/src/interpreter/objects/mod.rs b/src/interpreter/objects/mod.rs new file mode 100644 index 00000000..935a24a6 --- /dev/null +++ b/src/interpreter/objects/mod.rs @@ -0,0 +1,15 @@ +/*! + * Interpreter Objects Module (mod) + * + * Split into submodules: + * - ops.rs: instantiation (execute_new) and helpers + * - methods.rs: constructor-related methods + * - fields.rs: declarations, inheritance, generics utilities + */ + +use super::*; + +mod ops; +mod methods; +mod fields; + diff --git a/src/interpreter/objects/ops.rs b/src/interpreter/objects/ops.rs new file mode 100644 index 00000000..b9256aa0 --- /dev/null +++ b/src/interpreter/objects/ops.rs @@ -0,0 +1,91 @@ +use super::*; +use crate::box_trait::SharedNyashBox; +use std::sync::Arc; + +impl NyashInterpreter { + /// Evaluate `new` expression arguments to NyashBox values + pub(super) fn new_eval_args(&mut self, arguments: &[ASTNode]) -> Result>, RuntimeError> { + arguments.iter().map(|arg| self.execute_expression(arg)).collect() + } + + /// If user-defined and type args provided, validate/specialize and register declaration + pub(super) fn new_specialize_if_needed(&self, class: &str, type_arguments: &[String]) -> Result { + let mut target_class = class.to_string(); + let user_defined_exists = { + let box_decls = self.shared.box_declarations.read().unwrap(); + box_decls.contains_key(class) + }; + if user_defined_exists && !type_arguments.is_empty() { + let generic_decl = { + let box_decls = self.shared.box_declarations.read().unwrap(); + box_decls.get(class).cloned() + }; + if let Some(generic_decl) = generic_decl { + self.validate_generic_arguments(&generic_decl, type_arguments)?; + let specialized = self.specialize_generic_class(&generic_decl, type_arguments)?; + target_class = specialized.name.clone(); + // Insert specialized declaration so registry can create it + let mut box_decls = self.shared.box_declarations.write().unwrap(); + box_decls.insert(target_class.clone(), specialized); + } + } + Ok(target_class) + } + + /// Create box via registry and optionally run user-defined constructor (birth/arity) + pub(super) fn new_create_via_registry_and_maybe_ctor( + &mut self, + target_class: &str, + args: Vec>, + arguments: &[ASTNode], + ) -> Result, RuntimeError> { + // Try unified registry (use interpreter's runtime registry to include user-defined boxes) + let registry = self.runtime.box_registry.clone(); + let registry_lock = registry.lock().unwrap(); + match registry_lock.create_box(target_class, &args) { + Ok(box_instance) => { + // Check if this is a user-defined box that needs constructor execution + if let Some(_instance_box) = box_instance.as_any().downcast_ref::() { + // Check if we have a box declaration for this class + let (box_decl_opt, constructor_opt) = { + let box_decls = self.shared.box_declarations.read().unwrap(); + if let Some(box_decl) = box_decls.get(target_class) { + // Find the birth constructor (unified constructor system) + let birth_key = format!("birth/{}", arguments.len()); + let constructor = box_decl.constructors.get(&birth_key).cloned(); + (Some(box_decl.clone()), constructor) + } else { (None, None) } + }; + if let Some(box_decl) = box_decl_opt { + if let Some(constructor) = constructor_opt { + // Execute the constructor + let instance_arc: SharedNyashBox = Arc::from(box_instance); + drop(registry_lock); // Release lock before executing constructor + self.execute_constructor(&instance_arc, &constructor, arguments, &box_decl)?; + return Ok((*instance_arc).clone_box()); + } else if arguments.is_empty() { + // No constructor needed for zero arguments + return Ok(box_instance); + } else { + return Err(RuntimeError::InvalidOperation { + message: format!("No constructor found for {} with {} arguments", target_class, arguments.len()), + }); + } + } + } + // Not a user-defined box or no constructor needed + Ok(box_instance) + }, + Err(e) => Err(e), + } + } + + /// newå¼ã‚’実行 - Object creation engine + pub(crate) fn execute_new(&mut self, class: &str, arguments: &[ASTNode], type_arguments: &[String]) + -> Result, RuntimeError> { + // 80/20 path: unified registry + constructor + let args = self.new_eval_args(arguments)?; + let target_class = self.new_specialize_if_needed(class, type_arguments)?; + self.new_create_via_registry_and_maybe_ctor(&target_class, args, arguments) + } +} diff --git a/src/lib.rs b/src/lib.rs index 947abbe0..a68fdd5e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,6 +58,7 @@ pub mod cli; // Runtime system (plugins, registry, etc.) pub mod runtime; +pub mod runner_plugin_init; #[cfg(target_arch = "wasm32")] pub mod wasm_test; diff --git a/src/mir/builder.rs.backup b/src/mir/builder.rs.backup deleted file mode 100644 index 8f07a418..00000000 --- a/src/mir/builder.rs.backup +++ /dev/null @@ -1,1547 +0,0 @@ -/*! - * MIR Builder - Converts AST to MIR/SSA form - * - * Implements AST → MIR conversion with SSA construction - */ - -use super::{ - MirInstruction, BasicBlock, BasicBlockId, MirFunction, MirModule, - FunctionSignature, ValueId, ConstValue, BinaryOp, UnaryOp, CompareOp, - MirType, EffectMask, Effect, BasicBlockIdGenerator, ValueIdGenerator -}; -use crate::ast::{ASTNode, LiteralValue, BinaryOperator}; -use std::collections::HashMap; -use std::collections::HashSet; - -fn builder_debug_enabled() -> bool { - std::env::var("NYASH_BUILDER_DEBUG").is_ok() -} - -fn builder_debug_log(msg: &str) { - if builder_debug_enabled() { - eprintln!("[BUILDER] {}", msg); - } -} - -/// MIR builder for converting AST to SSA form -pub struct MirBuilder { - /// Current module being built - pub(super) current_module: Option, - - /// Current function being built - pub(super) current_function: Option, - - /// Current basic block being built - pub(super) current_block: Option, - - /// Value ID generator - pub(super) value_gen: ValueIdGenerator, - - /// Basic block ID generator - pub(super) block_gen: BasicBlockIdGenerator, - - /// Variable name to ValueId mapping (for SSA conversion) - pub(super) variable_map: HashMap, - - /// Pending phi functions to be inserted - #[allow(dead_code)] - pub(super) pending_phis: Vec<(BasicBlockId, ValueId, String)>, - - /// Origin tracking for simple optimizations (e.g., object.method after new) - /// Maps a ValueId to the class name if it was produced by NewBox of that class - pub(super) value_origin_newbox: HashMap, - - /// Names of user-defined boxes declared in the current module - pub(super) user_defined_boxes: HashSet, - - /// Weak field registry: BoxName -> {weak field names} - pub(super) weak_fields_by_box: HashMap>, - - /// Remember class of object fields after assignments: (base_id, field) -> class_name - pub(super) field_origin_class: HashMap<(ValueId, String), String>, -} - -impl MirBuilder { - /// Create a new MIR builder - pub fn new() -> Self { - Self { - current_module: None, - current_function: None, - current_block: None, - value_gen: ValueIdGenerator::new(), - block_gen: BasicBlockIdGenerator::new(), - variable_map: HashMap::new(), - pending_phis: Vec::new(), - value_origin_newbox: HashMap::new(), - user_defined_boxes: HashSet::new(), - weak_fields_by_box: HashMap::new(), - field_origin_class: HashMap::new(), - } - } - - /// Emit a type check instruction (flagged to TypeOp in PoC) - #[allow(dead_code)] - pub(super) fn emit_type_check(&mut self, value: ValueId, expected_type: String) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_typeop_poc")] - { - self.emit_instruction(MirInstruction::TypeOp { dst, op: super::TypeOpKind::Check, value, ty: super::MirType::Box(expected_type) })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_typeop_poc"))] - { - self.emit_instruction(MirInstruction::TypeCheck { dst, value, expected_type })?; - Ok(dst) - } - } - - /// Emit a cast instruction (flagged to TypeOp in PoC) - #[allow(dead_code)] - pub(super) fn emit_cast(&mut self, value: ValueId, target_type: super::MirType) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_typeop_poc")] - { - self.emit_instruction(MirInstruction::TypeOp { dst, op: super::TypeOpKind::Cast, value, ty: target_type.clone() })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_typeop_poc"))] - { - self.emit_instruction(MirInstruction::Cast { dst, value, target_type })?; - Ok(dst) - } - } - - /// Emit a weak reference creation (flagged to WeakRef(New) in PoC) - #[allow(dead_code)] - pub(super) fn emit_weak_new(&mut self, box_val: ValueId) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::WeakRef { dst, op: super::WeakRefOp::New, value: box_val })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::WeakNew { dst, box_val })?; - Ok(dst) - } - } - - /// Emit a weak reference load (flagged to WeakRef(Load) in PoC) - #[allow(dead_code)] - pub(super) fn emit_weak_load(&mut self, weak_ref: ValueId) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::WeakRef { dst, op: super::WeakRefOp::Load, value: weak_ref })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::WeakLoad { dst, weak_ref })?; - Ok(dst) - } - } - - /// Emit a barrier read (flagged to Barrier(Read) in PoC) - #[allow(dead_code)] - pub(super) fn emit_barrier_read(&mut self, ptr: ValueId) -> Result<(), String> { - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::Barrier { op: super::BarrierOp::Read, ptr }) - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::BarrierRead { ptr }) - } - } - - /// Emit a barrier write (flagged to Barrier(Write) in PoC) - #[allow(dead_code)] - pub(super) fn emit_barrier_write(&mut self, ptr: ValueId) -> Result<(), String> { - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::Barrier { op: super::BarrierOp::Write, ptr }) - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::BarrierWrite { ptr }) - } - } - - /// Lower a box method (e.g., birth) into a standalone MIR function - /// func_name: Fully-qualified name like "Person.birth/1" - /// box_name: Owning box type name (used for 'me' param type) - fn lower_method_as_function( - &mut self, - func_name: String, - box_name: String, - params: Vec, - body: Vec, - ) -> Result<(), String> { - // Prepare function signature: (me: Box(box_name), args: Unknown...)-> Void - let mut param_types = Vec::new(); - param_types.push(MirType::Box(box_name.clone())); // me - for _ in ¶ms { - param_types.push(MirType::Unknown); - } - // Lightweight return type inference: if there is an explicit `return ` - // in the top-level body, mark return type as Unknown; otherwise Void. - let mut returns_value = false; - for st in &body { - if let ASTNode::Return { value: Some(_), .. } = st { returns_value = true; break; } - } - let ret_ty = if returns_value { MirType::Unknown } else { MirType::Void }; - - let signature = FunctionSignature { - name: func_name, - params: param_types, - return_type: ret_ty, - effects: EffectMask::READ.add(Effect::ReadHeap), // conservative - }; - let entry = self.block_gen.next(); - let function = MirFunction::new(signature, entry); - - // Save current builder state - let saved_function = self.current_function.take(); - let saved_block = self.current_block.take(); - let saved_var_map = std::mem::take(&mut self.variable_map); - let saved_value_gen = self.value_gen.clone(); - // Reset value id generator so that params start from %0, %1, ... - self.value_gen.reset(); - - // Switch context to new function - self.current_function = Some(function); - self.current_block = Some(entry); - self.ensure_block_exists(entry)?; - - // Create parameter value ids and bind variable names - if let Some(ref mut f) = self.current_function { - // 'me' parameter will be %0 - let me_id = self.value_gen.next(); - f.params.push(me_id); - self.variable_map.insert("me".to_string(), me_id); - // Record origin: 'me' belongs to this box type (enables weak field wiring) - self.value_origin_newbox.insert(me_id, box_name.clone()); - // user parameters continue as %1..N - for p in ¶ms { - let pid = self.value_gen.next(); - f.params.push(pid); - self.variable_map.insert(p.clone(), pid); - } - } - - // Lower body as a Program block - let program_ast = ASTNode::Program { statements: body, span: crate::ast::Span::unknown() }; - let _last = self.build_expression(program_ast)?; - - // Ensure function is properly terminated - if let Some(ref mut f) = self.current_function { - if let Some(block) = f.get_block(self.current_block.unwrap()) { - if !block.is_terminated() { - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_val, value: ConstValue::Void })?; - self.emit_instruction(MirInstruction::Return { value: Some(void_val) })?; - } - } - } - - // Take the function out and add to module - let finalized_function = self.current_function.take().unwrap(); - if let Some(ref mut module) = self.current_module { - module.add_function(finalized_function); - } - - // Restore builder state - self.current_function = saved_function; - self.current_block = saved_block; - self.variable_map = saved_var_map; - self.value_gen = saved_value_gen; - - Ok(()) - } - - /// Build a complete MIR module from AST - pub fn build_module(&mut self, ast: ASTNode) -> Result { - // Create a new module - let module = MirModule::new("main".to_string()); - - // Create a main function to contain the AST - let main_signature = FunctionSignature { - name: "main".to_string(), - params: vec![], - return_type: MirType::Void, - effects: EffectMask::PURE, - }; - - let entry_block = self.block_gen.next(); - let mut main_function = MirFunction::new(main_signature, entry_block); - main_function.metadata.is_entry_point = true; - - // Set up building context - self.current_module = Some(module); - self.current_function = Some(main_function); - self.current_block = Some(entry_block); - - // Add safepoint at function entry - self.emit_instruction(MirInstruction::Safepoint)?; - - // Convert AST to MIR - let result_value = self.build_expression(ast)?; - - // Add return instruction if needed - if let Some(block_id) = self.current_block { - if let Some(ref mut function) = self.current_function { - if let Some(block) = function.get_block_mut(block_id) { - if !block.is_terminated() { - block.add_instruction(MirInstruction::Return { - value: Some(result_value), - }); - } - } - } - } - - // Finalize and return module - let mut module = self.current_module.take().unwrap(); - let function = self.current_function.take().unwrap(); - module.add_function(function); - - Ok(module) - } - - /// Build an expression and return its value ID - pub(super) fn build_expression(&mut self, ast: ASTNode) -> Result { - match ast { - ASTNode::Literal { value, .. } => { - self.build_literal(value) - }, - - ASTNode::BinaryOp { left, operator, right, .. } => { - self.build_binary_op(*left, operator, *right) - }, - - ASTNode::UnaryOp { operator, operand, .. } => { - let op_string = match operator { - crate::ast::UnaryOperator::Minus => "-".to_string(), - crate::ast::UnaryOperator::Not => "not".to_string(), - }; - self.build_unary_op(op_string, *operand) - }, - - ASTNode::Variable { name, .. } => { - self.build_variable_access(name.clone()) - }, - - ASTNode::Me { .. } => { - self.build_me_expression() - }, - - ASTNode::MethodCall { object, method, arguments, .. } => { - // Early TypeOp lowering for method-style is()/as() - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - let obj_val = self.build_expression(*object.clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: obj_val, ty })?; - return Ok(dst); - } - } - self.build_method_call(*object.clone(), method.clone(), arguments.clone()) - }, - - ASTNode::FromCall { parent, method, arguments, .. } => { - self.build_from_expression(parent.clone(), method.clone(), arguments.clone()) - }, - - ASTNode::Assignment { target, value, .. } => { - // Check if target is a field access for RefSet - if let ASTNode::FieldAccess { object, field, .. } = target.as_ref() { - self.build_field_assignment(*object.clone(), field.clone(), *value.clone()) - } else if let ASTNode::Variable { name, .. } = target.as_ref() { - // Plain variable assignment - existing behavior - self.build_assignment(name.clone(), *value.clone()) - } else { - Err("Complex assignment targets not yet supported in MIR".to_string()) - } - }, - - ASTNode::FunctionCall { name, arguments, .. } => { - // Early TypeOp lowering for function-style isType()/asType() - if (name == "isType" || name == "asType") && arguments.len() == 2 { - if let Some(type_name) = Self::extract_string_literal(&arguments[1]) { - let val = self.build_expression(arguments[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - return Ok(dst); - } - } - self.build_function_call(name.clone(), arguments.clone()) - }, - - ASTNode::Print { expression, .. } => { - self.build_print_statement(*expression.clone()) - }, - - ASTNode::Program { statements, .. } => { - self.build_block(statements.clone()) - }, - - ASTNode::If { condition, then_body, else_body, .. } => { - let else_ast = if let Some(else_statements) = else_body { - Some(ASTNode::Program { - statements: else_statements.clone(), - span: crate::ast::Span::unknown(), - }) - } else { - None - }; - - self.build_if_statement( - *condition.clone(), - ASTNode::Program { - statements: then_body.clone(), - span: crate::ast::Span::unknown(), - }, - else_ast - ) - }, - - ASTNode::Loop { condition, body, .. } => { - self.build_loop_statement(*condition.clone(), body.clone()) - }, - - ASTNode::TryCatch { try_body, catch_clauses, finally_body, .. } => { - self.build_try_catch_statement(try_body.clone(), catch_clauses.clone(), finally_body.clone()) - }, - - ASTNode::Throw { expression, .. } => { - self.build_throw_statement(*expression.clone()) - }, - - ASTNode::Return { value, .. } => { - self.build_return_statement(value.clone()) - }, - - ASTNode::Local { variables, initial_values, .. } => { - self.build_local_statement(variables.clone(), initial_values.clone()) - }, - - ASTNode::BoxDeclaration { name, methods, is_static, fields, constructors, weak_fields, .. } => { - if is_static && name == "Main" { - self.build_static_main_box(methods.clone()) - } else { - // Support user-defined boxes - handle as statement, return void - // Track as user-defined (eligible for method lowering) - self.user_defined_boxes.insert(name.clone()); - self.build_box_declaration(name.clone(), methods.clone(), fields.clone(), weak_fields.clone())?; - - // Phase 2: Lower constructors (birth/N) into MIR functions - // Function name pattern: "{BoxName}.{constructor_key}" (e.g., "Person.birth/1") - for (ctor_key, ctor_ast) in constructors.clone() { - if let ASTNode::FunctionDeclaration { params, body, .. } = ctor_ast { - let func_name = format!("{}.{}", name, ctor_key); - self.lower_method_as_function(func_name, name.clone(), params.clone(), body.clone())?; - } - } - - // Phase 3: Lower instance methods into MIR functions - // Function name pattern: "{BoxName}.{method}/{N}" - for (method_name, method_ast) in methods.clone() { - if let ASTNode::FunctionDeclaration { params, body, is_static, .. } = method_ast { - if !is_static { - let func_name = format!("{}.{}{}", name, method_name, format!("/{}", params.len())); - self.lower_method_as_function(func_name, name.clone(), params.clone(), body.clone())?; - } - } - } - - // Return a void value since this is a statement - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - })?; - Ok(void_val) - } - }, - - ASTNode::FieldAccess { object, field, .. } => { - self.build_field_access(*object.clone(), field.clone()) - }, - - ASTNode::New { class, arguments, .. } => { - self.build_new_expression(class.clone(), arguments.clone()) - }, - - // Phase 7: Async operations - ASTNode::Nowait { variable, expression, .. } => { - self.build_nowait_statement(variable.clone(), *expression.clone()) - }, - - ASTNode::AwaitExpression { expression, .. } => { - self.build_await_expression(*expression.clone()) - }, - - _ => { - Err(format!("Unsupported AST node type: {:?}", ast)) - } - } - } - - /// Build a literal value - fn build_literal(&mut self, literal: LiteralValue) -> Result { - let const_value = match literal { - LiteralValue::Integer(n) => ConstValue::Integer(n), - LiteralValue::Float(f) => ConstValue::Float(f), - LiteralValue::String(s) => ConstValue::String(s), - LiteralValue::Bool(b) => ConstValue::Bool(b), - LiteralValue::Null => ConstValue::Null, - LiteralValue::Void => ConstValue::Void, - }; - - let dst = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst, - value: const_value, - })?; - - Ok(dst) - } - - /// Build a binary operation - fn build_binary_op(&mut self, left: ASTNode, operator: BinaryOperator, right: ASTNode) -> Result { - let lhs = self.build_expression(left)?; - let rhs = self.build_expression(right)?; - let dst = self.value_gen.next(); - - let mir_op = self.convert_binary_operator(operator)?; - - match mir_op { - // Arithmetic operations - BinaryOpType::Arithmetic(op) => { - self.emit_instruction(MirInstruction::BinOp { - dst, op, lhs, rhs - })?; - }, - - // Comparison operations - BinaryOpType::Comparison(op) => { - self.emit_instruction(MirInstruction::Compare { - dst, op, lhs, rhs - })?; - }, - } - - Ok(dst) - } - - /// Build a unary operation - fn build_unary_op(&mut self, operator: String, operand: ASTNode) -> Result { - let operand_val = self.build_expression(operand)?; - let dst = self.value_gen.next(); - - let mir_op = self.convert_unary_operator(operator)?; - - self.emit_instruction(MirInstruction::UnaryOp { - dst, - op: mir_op, - operand: operand_val, - })?; - - Ok(dst) - } - - /// Build variable access - fn build_variable_access(&mut self, name: String) -> Result { - if let Some(&value_id) = self.variable_map.get(&name) { - Ok(value_id) - } else { - Err(format!("Undefined variable: {}", name)) - } - } - - /// Build assignment - fn build_assignment(&mut self, var_name: String, value: ASTNode) -> Result { - let value_id = self.build_expression(value)?; - - // In SSA form, each assignment creates a new value - self.variable_map.insert(var_name.clone(), value_id); - - Ok(value_id) - } - - /// Build function call - fn build_function_call(&mut self, name: String, args: Vec) -> Result { - // Minimal TypeOp wiring via function-style: isType(value, "Type"), asType(value, "Type") - if (name == "isType" || name == "asType") && args.len() == 2 { - if let Some(type_name) = Self::extract_string_literal(&args[1]) { - let val = self.build_expression(args[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - return Ok(dst); - } - } - // Build argument values - let mut arg_values = Vec::new(); - for arg in args { - arg_values.push(self.build_expression(arg)?); - } - - let dst = self.value_gen.next(); - - // For now, treat all function calls as Box method calls - if arg_values.is_empty() { - return Err("Function calls require at least one argument (the object)".to_string()); - } - - let box_val = arg_values.remove(0); - - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(dst), - box_val, - method: name, - args: arg_values, - effects: EffectMask::PURE.add(Effect::ReadHeap), // Conservative default - })?; - - Ok(dst) - } - - /// Build print statement - converts to console output - fn build_print_statement(&mut self, expression: ASTNode) -> Result { - builder_debug_log("enter build_print_statement"); - // 根治: print(isType(...)) / print(asType(...)) / print(obj.is(...)) / print(obj.as(...)) ã¯å¿…ãšTypeOpã‚’å…ˆã«ç”Ÿæˆã—ã¦ã‹ã‚‰printã™ã‚‹ - match &expression { - ASTNode::FunctionCall { name, arguments, .. } if (name == "isType" || name == "asType") && arguments.len() == 2 => { - builder_debug_log("pattern: print(FunctionCall isType|asType)"); - if let Some(type_name) = Self::extract_string_literal(&arguments[1]) { - builder_debug_log(&format!("extract_string_literal OK: {}", type_name)); - let val = self.build_expression(arguments[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - builder_debug_log(&format!("emit TypeOp {:?} value={} dst= {}", op, val, dst)); - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - self.emit_instruction(MirInstruction::Print { value: dst, effects: EffectMask::PURE.add(Effect::Io) })?; - return Ok(dst); - } else { - builder_debug_log("extract_string_literal FAIL"); - } - } - ASTNode::MethodCall { object, method, arguments, .. } if (method == "is" || method == "as") && arguments.len() == 1 => { - builder_debug_log("pattern: print(MethodCall is|as)"); - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - builder_debug_log(&format!("extract_string_literal OK: {}", type_name)); - let obj_val = self.build_expression(*object.clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - builder_debug_log(&format!("emit TypeOp {:?} obj={} dst= {}", op, obj_val, dst)); - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: obj_val, ty })?; - self.emit_instruction(MirInstruction::Print { value: dst, effects: EffectMask::PURE.add(Effect::Io) })?; - return Ok(dst); - } else { - builder_debug_log("extract_string_literal FAIL"); - } - } - _ => {} - } - - let value = self.build_expression(expression)?; - builder_debug_log(&format!("fallback print value={}", value)); - - // For now, use a special Print instruction (minimal scope) - self.emit_instruction(MirInstruction::Print { - value, - effects: EffectMask::PURE.add(Effect::Io), - })?; - - // Return the value that was printed - Ok(value) - } - - /// Build a block of statements - fn build_block(&mut self, statements: Vec) -> Result { - let mut last_value = None; - - for statement in statements { - last_value = Some(self.build_expression(statement)?); - } - - // Return last value or void - Ok(last_value.unwrap_or_else(|| { - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - }).unwrap(); - void_val - })) - } - - /// Build if statement with conditional branches - fn build_if_statement(&mut self, condition: ASTNode, then_branch: ASTNode, else_branch: Option) -> Result { - let condition_val = self.build_expression(condition)?; - - // Create basic blocks for then/else/merge - let then_block = self.block_gen.next(); - let else_block = self.block_gen.next(); - let merge_block = self.block_gen.next(); - - // Emit branch instruction in current block - self.emit_instruction(MirInstruction::Branch { - condition: condition_val, - then_bb: then_block, - else_bb: else_block, - })?; - - // Build then branch - self.current_block = Some(then_block); - self.ensure_block_exists(then_block)?; - // Keep a copy of AST for analysis (phi for variable reassignment) - let then_ast_for_analysis = then_branch.clone(); - let then_value = self.build_expression(then_branch)?; - if !self.is_current_block_terminated() { - self.emit_instruction(MirInstruction::Jump { target: merge_block })?; - } - - // Build else branch - self.current_block = Some(else_block); - self.ensure_block_exists(else_block)?; - let (else_value, else_ast_for_analysis) = if let Some(else_ast) = else_branch { - let val = self.build_expression(else_ast.clone())?; - (val, Some(else_ast)) - } else { - // No else branch, use void - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - })?; - (void_val, None) - }; - if !self.is_current_block_terminated() { - self.emit_instruction(MirInstruction::Jump { target: merge_block })?; - } - - // Create merge block with phi function - self.current_block = Some(merge_block); - self.ensure_block_exists(merge_block)?; - let result_val = self.value_gen.next(); - - self.emit_instruction(MirInstruction::Phi { - dst: result_val, - inputs: vec![ - (then_block, then_value), - (else_block, else_value), - ], - })?; - - // Heuristic: If both branches assign the same variable name, bind that variable to the phi result - let assigned_var_then = Self::extract_assigned_var(&then_ast_for_analysis); - let assigned_var_else = else_ast_for_analysis.as_ref().and_then(|a| Self::extract_assigned_var(a)); - if let (Some(a), Some(b)) = (assigned_var_then, assigned_var_else) { - if a == b { - self.variable_map.insert(a, result_val); - } - } - - Ok(result_val) - } - - /// Extract assigned variable name from an AST node if it represents an assignment to a variable. - /// Handles direct Assignment and Program with trailing single-statement Assignment. - fn extract_assigned_var(ast: &ASTNode) -> Option { - match ast { - ASTNode::Assignment { target, .. } => { - if let ASTNode::Variable { name, .. } = target.as_ref() { Some(name.clone()) } else { None } - } - ASTNode::Program { statements, .. } => { - // Inspect the last statement as the resulting value of the block - statements.last().and_then(|st| Self::extract_assigned_var(st)) - } - _ => None, - } - } - - /// Emit an instruction to the current basic block - pub(super) fn emit_instruction(&mut self, instruction: MirInstruction) -> Result<(), String> { - let block_id = self.current_block.ok_or("No current basic block")?; - - if let Some(ref mut function) = self.current_function { - if let Some(block) = function.get_block_mut(block_id) { - if builder_debug_enabled() { - eprintln!("[BUILDER] emit @bb{} -> {}", block_id, match &instruction { - MirInstruction::TypeOp { dst, op, value, ty } => format!("typeop {:?} {} {:?} -> {}", op, value, ty, dst), - MirInstruction::Print { value, .. } => format!("print {}", value), - MirInstruction::BoxCall { box_val, method, args, dst, .. } => format!("boxcall {}.{}({:?}) -> {:?}", box_val, method, args, dst), - MirInstruction::Call { func, args, dst, .. } => format!("call {}({:?}) -> {:?}", func, args, dst), - MirInstruction::NewBox { dst, box_type, args } => format!("new {}({:?}) -> {}", box_type, args, dst), - MirInstruction::Const { dst, value } => format!("const {:?} -> {}", value, dst), - MirInstruction::Branch { condition, then_bb, else_bb } => format!("br {}, {}, {}", condition, then_bb, else_bb), - MirInstruction::Jump { target } => format!("br {}", target), - _ => format!("{:?}", instruction), - }); - } - block.add_instruction(instruction); - Ok(()) - } else { - Err(format!("Basic block {} does not exist", block_id)) - } - } else { - Err("No current function".to_string()) - } - } - - /// Ensure a basic block exists in the current function - pub(super) fn ensure_block_exists(&mut self, block_id: BasicBlockId) -> Result<(), String> { - if let Some(ref mut function) = self.current_function { - if !function.blocks.contains_key(&block_id) { - let block = BasicBlock::new(block_id); - function.add_block(block); - } - Ok(()) - } else { - Err("No current function".to_string()) - } - } - - /// Build a loop statement: loop(condition) { body } - fn build_loop_statement(&mut self, condition: ASTNode, body: Vec) -> Result { - // Use the specialized LoopBuilder for proper SSA loop construction - let mut loop_builder = super::loop_builder::LoopBuilder::new(self); - loop_builder.build_loop(condition, body) - } - - /// Build a try/catch statement - fn build_try_catch_statement(&mut self, try_body: Vec, catch_clauses: Vec, finally_body: Option>) -> Result { - let try_block = self.block_gen.next(); - let catch_block = self.block_gen.next(); - let finally_block = if finally_body.is_some() { Some(self.block_gen.next()) } else { None }; - let exit_block = self.block_gen.next(); - - // Set up exception handler for the try block (before we enter it) - if let Some(catch_clause) = catch_clauses.first() { - let exception_value = self.value_gen.next(); - - // Register catch handler for exceptions that may occur in try block - self.emit_instruction(MirInstruction::Catch { - exception_type: catch_clause.exception_type.clone(), - exception_value, - handler_bb: catch_block, - })?; - } - - // Jump to try block - self.emit_instruction(MirInstruction::Jump { target: try_block })?; - - // Build try block - self.start_new_block(try_block)?; - - let try_ast = ASTNode::Program { - statements: try_body, - span: crate::ast::Span::unknown(), - }; - let _try_result = self.build_expression(try_ast)?; - - // Normal completion of try block - jump to finally or exit (if not already terminated) - if !self.is_current_block_terminated() { - let next_target = finally_block.unwrap_or(exit_block); - self.emit_instruction(MirInstruction::Jump { target: next_target })?; - } - - // Build catch block (reachable via exception handling) - self.start_new_block(catch_block)?; - - // Handle catch clause - if let Some(catch_clause) = catch_clauses.first() { - // Build catch body - let catch_ast = ASTNode::Program { - statements: catch_clause.body.clone(), - span: crate::ast::Span::unknown(), - }; - self.build_expression(catch_ast)?; - } - - // Catch completion - jump to finally or exit (if not already terminated) - if !self.is_current_block_terminated() { - let next_target = finally_block.unwrap_or(exit_block); - self.emit_instruction(MirInstruction::Jump { target: next_target })?; - } - - // Build finally block if present - if let (Some(finally_block_id), Some(finally_statements)) = (finally_block, finally_body) { - self.start_new_block(finally_block_id)?; - - let finally_ast = ASTNode::Program { - statements: finally_statements, - span: crate::ast::Span::unknown(), - }; - self.build_expression(finally_ast)?; - - self.emit_instruction(MirInstruction::Jump { target: exit_block })?; - } - - // Create exit block - self.start_new_block(exit_block)?; - - // Return void for now (in a complete implementation, would use phi for try/catch values) - let result = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: result, - value: ConstValue::Void, - })?; - - Ok(result) - } - - /// Build a throw statement - fn build_throw_statement(&mut self, expression: ASTNode) -> Result { - let exception_value = self.build_expression(expression)?; - - // Emit throw instruction with PANIC effect (this is a terminator) - self.emit_instruction(MirInstruction::Throw { - exception: exception_value, - effects: EffectMask::PANIC, - })?; - - // Throw doesn't return normally, but we need to return a value for the type system - // We can't add more instructions after throw, so just return the exception value - Ok(exception_value) - } - - /// Build local variable declarations with optional initial values - fn build_local_statement(&mut self, variables: Vec, initial_values: Vec>>) -> Result { - let mut last_value = None; - - // Process each variable declaration - for (i, var_name) in variables.iter().enumerate() { - let value_id = if i < initial_values.len() && initial_values[i].is_some() { - // Variable has initial value - evaluate it - let init_expr = initial_values[i].as_ref().unwrap(); - self.build_expression(*init_expr.clone())? - } else { - // No initial value - do not emit a const; leave uninitialized until assigned - // Use a fresh SSA id only for name binding; consumers should not use it before assignment - self.value_gen.next() - }; - - // Register variable in SSA form - self.variable_map.insert(var_name.clone(), value_id); - last_value = Some(value_id); - } - - // Return the last bound value id (no emission); callers shouldn't rely on this value - Ok(last_value.unwrap_or_else(|| { - // create a dummy id without emission - self.value_gen.next() - })) - } - - /// Build return statement - fn build_return_statement(&mut self, value: Option>) -> Result { - let return_value = if let Some(expr) = value { - self.build_expression(*expr)? - } else { - // Return void if no value specified - let void_dst = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_dst, - value: ConstValue::Void, - })?; - void_dst - }; - - // Emit return instruction - self.emit_instruction(MirInstruction::Return { - value: Some(return_value), - })?; - - Ok(return_value) - } - - /// Build static box Main - extracts main() method body and converts to Program - fn build_static_main_box(&mut self, methods: std::collections::HashMap) -> Result { - // Look for the main() method - if let Some(main_method) = methods.get("main") { - if let ASTNode::FunctionDeclaration { body, .. } = main_method { - // Convert the method body to a Program AST node and lower it - let program_ast = ASTNode::Program { - statements: body.clone(), - span: crate::ast::Span::unknown(), - }; - - // Use existing Program lowering logic - self.build_expression(program_ast) - } else { - Err("main method in static box Main is not a FunctionDeclaration".to_string()) - } - } else { - Err("static box Main must contain a main() method".to_string()) - } - } - - /// Build field access: object.field - fn build_field_access(&mut self, object: ASTNode, field: String) -> Result { - // Clone the object before building expression if we need to check it later - let object_clone = object.clone(); - - // First, build the object expression to get its ValueId - let object_value = self.build_expression(object)?; - - // Get the field from the object using RefGet - let field_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::RefGet { - dst: field_val, - reference: object_value, - field: field.clone(), - })?; - - // If we recorded origin class for this field on this base object, propagate it to this value id - if let Some(class_name) = self.field_origin_class.get(&(object_value, field.clone())).cloned() { - self.value_origin_newbox.insert(field_val, class_name); - } - - // If we can infer the box type and the field is weak, emit WeakLoad (+ optional barrier) - let mut inferred_class: Option = self.value_origin_newbox.get(&object_value).cloned(); - // Fallback: if the object is a nested field access like (X.Y).Z, consult recorded field origins for X.Y - if inferred_class.is_none() { - if let ASTNode::FieldAccess { object: inner_obj, field: ref parent_field, .. } = object_clone { - // Build inner base to get a stable id and consult mapping - if let Ok(base_id) = self.build_expression(*inner_obj.clone()) { - if let Some(cls) = self.field_origin_class.get(&(base_id, parent_field.clone())) { - inferred_class = Some(cls.clone()); - } - } - } - } - if let Some(class_name) = inferred_class { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - // Barrier (read) PoC - let _ = self.emit_barrier_read(field_val); - // WeakLoad - let loaded = self.emit_weak_load(field_val)?; - return Ok(loaded); - } - } - } - - Ok(field_val) - } - - /// Build new expression: new ClassName(arguments) - fn build_new_expression(&mut self, class: String, arguments: Vec) -> Result { - // Phase 9.78a: Unified Box creation using NewBox instruction - - // First, evaluate all arguments to get their ValueIds - let mut arg_values = Vec::new(); - for arg in arguments { - let arg_value = self.build_expression(arg)?; - arg_values.push(arg_value); - } - - // Generate the destination ValueId - let dst = self.value_gen.next(); - - // Emit NewBox instruction for all Box types - // VM will handle optimization for basic types internally - self.emit_instruction(MirInstruction::NewBox { - dst, - box_type: class.clone(), - args: arg_values.clone(), - })?; - - // Record origin for optimization: dst was created by NewBox of class - self.value_origin_newbox.insert(dst, class); - - // Immediately call birth(...) on the created instance to run constructor semantics. - // birth typically returns void; we don't capture the result here (dst: None) - self.emit_instruction(MirInstruction::BoxCall { - dst: None, - box_val: dst, - method: "birth".to_string(), - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - - Ok(dst) - } - - /// Build field assignment: object.field = value - fn build_field_assignment(&mut self, object: ASTNode, field: String, value: ASTNode) -> Result { - // Build the object and value expressions - let object_value = self.build_expression(object)?; - let mut value_result = self.build_expression(value)?; - - // If we can infer the box type and the field is weak, create WeakRef before store - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - value_result = self.emit_weak_new(value_result)?; - } - } - } - - // Set the field using RefSet - self.emit_instruction(MirInstruction::RefSet { - reference: object_value, - field: field.clone(), - value: value_result, - })?; - - // Emit a write barrier for weak fields (PoC) - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - let _ = self.emit_barrier_write(value_result); - } - } - } - - // Record origin class for this field (if the value originates from NewBox of a known class) - if let Some(class_name) = self.value_origin_newbox.get(&value_result).cloned() { - self.field_origin_class.insert((object_value, field.clone()), class_name); - } - - // Return the assigned value - Ok(value_result) - } - - /// Start a new basic block - pub(super) fn start_new_block(&mut self, block_id: BasicBlockId) -> Result<(), String> { - if let Some(ref mut function) = self.current_function { - function.add_block(BasicBlock::new(block_id)); - self.current_block = Some(block_id); - Ok(()) - } else { - Err("No current function".to_string()) - } - } - - /// Check if the current basic block is terminated - fn is_current_block_terminated(&self) -> bool { - if let (Some(block_id), Some(ref function)) = (self.current_block, &self.current_function) { - if let Some(block) = function.get_block(block_id) { - return block.is_terminated(); - } - } - false - } - - /// Convert AST binary operator to MIR operator - fn convert_binary_operator(&self, op: BinaryOperator) -> Result { - match op { - BinaryOperator::Add => Ok(BinaryOpType::Arithmetic(BinaryOp::Add)), - BinaryOperator::Subtract => Ok(BinaryOpType::Arithmetic(BinaryOp::Sub)), - BinaryOperator::Multiply => Ok(BinaryOpType::Arithmetic(BinaryOp::Mul)), - BinaryOperator::Divide => Ok(BinaryOpType::Arithmetic(BinaryOp::Div)), - BinaryOperator::Modulo => Ok(BinaryOpType::Arithmetic(BinaryOp::Mod)), - BinaryOperator::Equal => Ok(BinaryOpType::Comparison(CompareOp::Eq)), - BinaryOperator::NotEqual => Ok(BinaryOpType::Comparison(CompareOp::Ne)), - BinaryOperator::Less => Ok(BinaryOpType::Comparison(CompareOp::Lt)), - BinaryOperator::LessEqual => Ok(BinaryOpType::Comparison(CompareOp::Le)), - BinaryOperator::Greater => Ok(BinaryOpType::Comparison(CompareOp::Gt)), - BinaryOperator::GreaterEqual => Ok(BinaryOpType::Comparison(CompareOp::Ge)), - BinaryOperator::And => Ok(BinaryOpType::Arithmetic(BinaryOp::And)), - BinaryOperator::Or => Ok(BinaryOpType::Arithmetic(BinaryOp::Or)), - } - } - - /// Convert AST unary operator to MIR operator - fn convert_unary_operator(&self, op: String) -> Result { - match op.as_str() { - "-" => Ok(UnaryOp::Neg), - "!" | "not" => Ok(UnaryOp::Not), - "~" => Ok(UnaryOp::BitNot), - _ => Err(format!("Unsupported unary operator: {}", op)), - } - } - - /// Build nowait statement: nowait variable = expression - fn build_nowait_statement(&mut self, variable: String, expression: ASTNode) -> Result { - // Evaluate the expression - let expression_value = self.build_expression(expression)?; - - // Create a new Future with the evaluated expression as the initial value - let future_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::FutureNew { - dst: future_id, - value: expression_value, - })?; - - // Store the future in the variable - self.variable_map.insert(variable.clone(), future_id); - - Ok(future_id) - } - - /// Build await expression: await expression - fn build_await_expression(&mut self, expression: ASTNode) -> Result { - // Evaluate the expression (should be a Future) - let future_value = self.build_expression(expression)?; - - // Create destination for await result - let result_id = self.value_gen.next(); - - // Emit await instruction - self.emit_instruction(MirInstruction::Await { - dst: result_id, - future: future_value, - })?; - - Ok(result_id) - } - - /// Build me expression: me - fn build_me_expression(&mut self) -> Result { - // If lowering a method/birth function, "me" should be a parameter - if let Some(id) = self.variable_map.get("me").cloned() { - return Ok(id); - } - - // Fallback: use a symbolic constant (legacy behavior) - let me_value = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: me_value, - value: ConstValue::String("__me__".to_string()), - })?; - // Register a stable mapping so subsequent 'me' resolves to the same ValueId - self.variable_map.insert("me".to_string(), me_value); - Ok(me_value) - } - - /// Build method call: object.method(arguments) - fn build_method_call(&mut self, object: ASTNode, method: String, arguments: Vec) -> Result { - // Minimal TypeOp wiring via method-style syntax: value.is("Type") / value.as("Type") - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - // Build the object expression - let object_value = self.build_expression(object.clone())?; - // Map string to MIR type - let mir_ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: object_value, ty: mir_ty })?; - return Ok(dst); - } - } - // ExternCall判定ã¯objectã®å¤‰æ•°è§£æ±ºã‚ˆã‚Šå…ˆã«è¡Œã†ï¼ˆæœªå®šç¾©å¤‰æ•°ã§è½ã¨ã•ãªã„) - if let ASTNode::Variable { name: object_name, .. } = object.clone() { - // Build argument expressions first (externã¯object自体を使ã‚ãªã„) - let mut arg_values = Vec::new(); - for arg in &arguments { - arg_values.push(self.build_expression(arg.clone())?); - } - match (object_name.as_str(), method.as_str()) { - ("console", "log") => { - self.emit_instruction(MirInstruction::ExternCall { - dst: None, - iface_name: "env.console".to_string(), - method_name: "log".to_string(), - args: arg_values, - effects: EffectMask::IO, - })?; - let void_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_id, value: ConstValue::Void })?; - return Ok(void_id); - }, - ("canvas", "fillRect") | ("canvas", "fillText") => { - self.emit_instruction(MirInstruction::ExternCall { - dst: None, - iface_name: "env.canvas".to_string(), - method_name: method, - args: arg_values, - effects: EffectMask::IO, - })?; - let void_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_id, value: ConstValue::Void })?; - return Ok(void_id); - }, - _ => {} - } - } - - // Build the object expression - let object_value = self.build_expression(object.clone())?; - - // Secondary interception for is/as in case early path did not trigger - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - let mir_ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: object_value, ty: mir_ty })?; - return Ok(dst); - } - } - - // Build argument expressions - let mut arg_values = Vec::new(); - for arg in &arguments { - arg_values.push(self.build_expression(arg.clone())?); - } - - // Create result value - let result_id = self.value_gen.next(); - - // Optimization: If the object is a direct `new ClassName(...)`, lower to a direct Call - if let ASTNode::New { class, .. } = object { - // Build function name and only lower to Call if the function exists (user-defined) - let func_name = format!("{}.{}{}", class, method, format!("/{}", arg_values.len())); - let can_lower = self.user_defined_boxes.contains(&class) - && if let Some(ref module) = self.current_module { module.functions.contains_key(&func_name) } else { false }; - if can_lower { - let func_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: func_val, value: ConstValue::String(func_name) })?; - let mut call_args = Vec::with_capacity(arg_values.len() + 1); - call_args.push(object_value); - call_args.extend(arg_values); - self.emit_instruction(MirInstruction::Call { - dst: Some(result_id), - func: func_val, - args: call_args, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - return Ok(result_id); - } - // else fall through to BoxCall below - } else { - // If the object originates from a NewBox in this function, we can lower to Call as well - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - let func_name = format!("{}.{}{}", class_name, method, format!("/{}", arg_values.len())); - let can_lower = self.user_defined_boxes.contains(&class_name) - && if let Some(ref module) = self.current_module { module.functions.contains_key(&func_name) } else { false }; - if can_lower { - let func_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: func_val, value: ConstValue::String(func_name) })?; - let mut call_args = Vec::with_capacity(arg_values.len() + 1); - call_args.push(object_value); - call_args.extend(arg_values); - self.emit_instruction(MirInstruction::Call { - dst: Some(result_id), - func: func_val, - args: call_args, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - return Ok(result_id); - } - } - } - - // Fallback: Emit a BoxCall instruction for regular or plugin/builtin method calls - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(result_id), - box_val: object_value, - method, - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), // Method calls may have side effects - })?; - Ok(result_id) - } - - /// Map a user-facing type name to MIR type - fn parse_type_name_to_mir(name: &str) -> super::MirType { - match name { - "Integer" | "Int" | "I64" => super::MirType::Integer, - "Float" | "F64" => super::MirType::Float, - "Bool" | "Boolean" => super::MirType::Bool, - "String" => super::MirType::String, - "Void" | "Unit" => super::MirType::Void, - other => super::MirType::Box(other.to_string()), - } - } - - /// Extract string literal from AST node if possible - /// Supports: Literal("Type") and new StringBox("Type") - fn extract_string_literal(node: &ASTNode) -> Option { - let mut cur = node; - loop { - match cur { - ASTNode::Literal { value: crate::ast::LiteralValue::String(s), .. } => return Some(s.clone()), - ASTNode::New { class, arguments, .. } if class == "StringBox" && arguments.len() == 1 => { - cur = &arguments[0]; - continue; - } - _ => return None, - } - } - } - - /// Build from expression: from Parent.method(arguments) - fn build_from_expression(&mut self, parent: String, method: String, arguments: Vec) -> Result { - // Build argument expressions - let mut arg_values = Vec::new(); - for arg in arguments { - arg_values.push(self.build_expression(arg)?); - } - - // Create a synthetic "parent reference" value - let parent_value = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: parent_value, - value: ConstValue::String(parent), - })?; - - // Create result value - let result_id = self.value_gen.next(); - - // Emit a BoxCall instruction for delegation - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(result_id), - box_val: parent_value, - method, - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - - Ok(result_id) - } - - /// Build box declaration: box Name { fields... methods... } - fn build_box_declaration(&mut self, name: String, methods: std::collections::HashMap, fields: Vec, weak_fields: Vec) -> Result<(), String> { - // For Phase 8.4, we'll emit metadata instructions to register the box type - // In a full implementation, this would register type information for later use - - // Create a type registration constant - let type_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: type_id, - value: ConstValue::String(format!("__box_type_{}", name)), - })?; - - // For each field, emit metadata about the field - for field in fields { - let field_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: field_id, - value: ConstValue::String(format!("__field_{}_{}", name, field)), - })?; - } - - // Record weak fields for this box - if !weak_fields.is_empty() { - let set: HashSet = weak_fields.into_iter().collect(); - self.weak_fields_by_box.insert(name.clone(), set); - } - - // Process methods - now methods is a HashMap - for (method_name, method_ast) in methods { - if let ASTNode::FunctionDeclaration { .. } = method_ast { - let method_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: method_id, - value: ConstValue::String(format!("__method_{}_{}", name, method_name)), - })?; - } - } - - Ok(()) - } -} - -/// Helper enum for binary operator classification -#[derive(Debug)] -enum BinaryOpType { - Arithmetic(BinaryOp), - Comparison(CompareOp), -} - -impl Default for MirBuilder { - fn default() -> Self { - Self::new() - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::ast::{ASTNode, LiteralValue, Span}; - - #[test] - fn test_literal_building() { - let mut builder = MirBuilder::new(); - - let ast = ASTNode::Literal { - value: LiteralValue::Integer(42), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - assert_eq!(module.function_names().len(), 1); - assert!(module.get_function("main").is_some()); - } - - #[test] - fn test_binary_op_building() { - let mut builder = MirBuilder::new(); - - let ast = ASTNode::BinaryOp { - left: Box::new(ASTNode::Literal { - value: LiteralValue::Integer(10), - span: Span::unknown(), - }), - operator: BinaryOperator::Add, - right: Box::new(ASTNode::Literal { - value: LiteralValue::Integer(32), - span: Span::unknown(), - }), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - let function = module.get_function("main").unwrap(); - - // Should have constants and binary operation - let stats = function.stats(); - assert!(stats.instruction_count >= 3); // 2 constants + 1 binop + 1 return - } - - #[test] - fn test_if_statement_building() { - let mut builder = MirBuilder::new(); - - // Adapt test to current AST: If with statement bodies - let ast = ASTNode::If { - condition: Box::new(ASTNode::Literal { - value: LiteralValue::Bool(true), - span: Span::unknown(), - }), - then_body: vec![ASTNode::Literal { - value: LiteralValue::Integer(1), - span: Span::unknown(), - }], - else_body: Some(vec![ASTNode::Literal { - value: LiteralValue::Integer(2), - span: Span::unknown(), - }]), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - let function = module.get_function("main").unwrap(); - - // Should have multiple blocks for if/then/else/merge - assert!(function.blocks.len() >= 3); - - // Should have phi function in merge block - let stats = function.stats(); - assert!(stats.phi_count >= 1); - } -} diff --git a/src/mir/builder_old.rs b/src/mir/builder_old.rs deleted file mode 100644 index 8f07a418..00000000 --- a/src/mir/builder_old.rs +++ /dev/null @@ -1,1547 +0,0 @@ -/*! - * MIR Builder - Converts AST to MIR/SSA form - * - * Implements AST → MIR conversion with SSA construction - */ - -use super::{ - MirInstruction, BasicBlock, BasicBlockId, MirFunction, MirModule, - FunctionSignature, ValueId, ConstValue, BinaryOp, UnaryOp, CompareOp, - MirType, EffectMask, Effect, BasicBlockIdGenerator, ValueIdGenerator -}; -use crate::ast::{ASTNode, LiteralValue, BinaryOperator}; -use std::collections::HashMap; -use std::collections::HashSet; - -fn builder_debug_enabled() -> bool { - std::env::var("NYASH_BUILDER_DEBUG").is_ok() -} - -fn builder_debug_log(msg: &str) { - if builder_debug_enabled() { - eprintln!("[BUILDER] {}", msg); - } -} - -/// MIR builder for converting AST to SSA form -pub struct MirBuilder { - /// Current module being built - pub(super) current_module: Option, - - /// Current function being built - pub(super) current_function: Option, - - /// Current basic block being built - pub(super) current_block: Option, - - /// Value ID generator - pub(super) value_gen: ValueIdGenerator, - - /// Basic block ID generator - pub(super) block_gen: BasicBlockIdGenerator, - - /// Variable name to ValueId mapping (for SSA conversion) - pub(super) variable_map: HashMap, - - /// Pending phi functions to be inserted - #[allow(dead_code)] - pub(super) pending_phis: Vec<(BasicBlockId, ValueId, String)>, - - /// Origin tracking for simple optimizations (e.g., object.method after new) - /// Maps a ValueId to the class name if it was produced by NewBox of that class - pub(super) value_origin_newbox: HashMap, - - /// Names of user-defined boxes declared in the current module - pub(super) user_defined_boxes: HashSet, - - /// Weak field registry: BoxName -> {weak field names} - pub(super) weak_fields_by_box: HashMap>, - - /// Remember class of object fields after assignments: (base_id, field) -> class_name - pub(super) field_origin_class: HashMap<(ValueId, String), String>, -} - -impl MirBuilder { - /// Create a new MIR builder - pub fn new() -> Self { - Self { - current_module: None, - current_function: None, - current_block: None, - value_gen: ValueIdGenerator::new(), - block_gen: BasicBlockIdGenerator::new(), - variable_map: HashMap::new(), - pending_phis: Vec::new(), - value_origin_newbox: HashMap::new(), - user_defined_boxes: HashSet::new(), - weak_fields_by_box: HashMap::new(), - field_origin_class: HashMap::new(), - } - } - - /// Emit a type check instruction (flagged to TypeOp in PoC) - #[allow(dead_code)] - pub(super) fn emit_type_check(&mut self, value: ValueId, expected_type: String) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_typeop_poc")] - { - self.emit_instruction(MirInstruction::TypeOp { dst, op: super::TypeOpKind::Check, value, ty: super::MirType::Box(expected_type) })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_typeop_poc"))] - { - self.emit_instruction(MirInstruction::TypeCheck { dst, value, expected_type })?; - Ok(dst) - } - } - - /// Emit a cast instruction (flagged to TypeOp in PoC) - #[allow(dead_code)] - pub(super) fn emit_cast(&mut self, value: ValueId, target_type: super::MirType) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_typeop_poc")] - { - self.emit_instruction(MirInstruction::TypeOp { dst, op: super::TypeOpKind::Cast, value, ty: target_type.clone() })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_typeop_poc"))] - { - self.emit_instruction(MirInstruction::Cast { dst, value, target_type })?; - Ok(dst) - } - } - - /// Emit a weak reference creation (flagged to WeakRef(New) in PoC) - #[allow(dead_code)] - pub(super) fn emit_weak_new(&mut self, box_val: ValueId) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::WeakRef { dst, op: super::WeakRefOp::New, value: box_val })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::WeakNew { dst, box_val })?; - Ok(dst) - } - } - - /// Emit a weak reference load (flagged to WeakRef(Load) in PoC) - #[allow(dead_code)] - pub(super) fn emit_weak_load(&mut self, weak_ref: ValueId) -> Result { - let dst = self.value_gen.next(); - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::WeakRef { dst, op: super::WeakRefOp::Load, value: weak_ref })?; - return Ok(dst); - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::WeakLoad { dst, weak_ref })?; - Ok(dst) - } - } - - /// Emit a barrier read (flagged to Barrier(Read) in PoC) - #[allow(dead_code)] - pub(super) fn emit_barrier_read(&mut self, ptr: ValueId) -> Result<(), String> { - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::Barrier { op: super::BarrierOp::Read, ptr }) - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::BarrierRead { ptr }) - } - } - - /// Emit a barrier write (flagged to Barrier(Write) in PoC) - #[allow(dead_code)] - pub(super) fn emit_barrier_write(&mut self, ptr: ValueId) -> Result<(), String> { - #[cfg(feature = "mir_refbarrier_unify_poc")] - { - self.emit_instruction(MirInstruction::Barrier { op: super::BarrierOp::Write, ptr }) - } - #[cfg(not(feature = "mir_refbarrier_unify_poc"))] - { - self.emit_instruction(MirInstruction::BarrierWrite { ptr }) - } - } - - /// Lower a box method (e.g., birth) into a standalone MIR function - /// func_name: Fully-qualified name like "Person.birth/1" - /// box_name: Owning box type name (used for 'me' param type) - fn lower_method_as_function( - &mut self, - func_name: String, - box_name: String, - params: Vec, - body: Vec, - ) -> Result<(), String> { - // Prepare function signature: (me: Box(box_name), args: Unknown...)-> Void - let mut param_types = Vec::new(); - param_types.push(MirType::Box(box_name.clone())); // me - for _ in ¶ms { - param_types.push(MirType::Unknown); - } - // Lightweight return type inference: if there is an explicit `return ` - // in the top-level body, mark return type as Unknown; otherwise Void. - let mut returns_value = false; - for st in &body { - if let ASTNode::Return { value: Some(_), .. } = st { returns_value = true; break; } - } - let ret_ty = if returns_value { MirType::Unknown } else { MirType::Void }; - - let signature = FunctionSignature { - name: func_name, - params: param_types, - return_type: ret_ty, - effects: EffectMask::READ.add(Effect::ReadHeap), // conservative - }; - let entry = self.block_gen.next(); - let function = MirFunction::new(signature, entry); - - // Save current builder state - let saved_function = self.current_function.take(); - let saved_block = self.current_block.take(); - let saved_var_map = std::mem::take(&mut self.variable_map); - let saved_value_gen = self.value_gen.clone(); - // Reset value id generator so that params start from %0, %1, ... - self.value_gen.reset(); - - // Switch context to new function - self.current_function = Some(function); - self.current_block = Some(entry); - self.ensure_block_exists(entry)?; - - // Create parameter value ids and bind variable names - if let Some(ref mut f) = self.current_function { - // 'me' parameter will be %0 - let me_id = self.value_gen.next(); - f.params.push(me_id); - self.variable_map.insert("me".to_string(), me_id); - // Record origin: 'me' belongs to this box type (enables weak field wiring) - self.value_origin_newbox.insert(me_id, box_name.clone()); - // user parameters continue as %1..N - for p in ¶ms { - let pid = self.value_gen.next(); - f.params.push(pid); - self.variable_map.insert(p.clone(), pid); - } - } - - // Lower body as a Program block - let program_ast = ASTNode::Program { statements: body, span: crate::ast::Span::unknown() }; - let _last = self.build_expression(program_ast)?; - - // Ensure function is properly terminated - if let Some(ref mut f) = self.current_function { - if let Some(block) = f.get_block(self.current_block.unwrap()) { - if !block.is_terminated() { - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_val, value: ConstValue::Void })?; - self.emit_instruction(MirInstruction::Return { value: Some(void_val) })?; - } - } - } - - // Take the function out and add to module - let finalized_function = self.current_function.take().unwrap(); - if let Some(ref mut module) = self.current_module { - module.add_function(finalized_function); - } - - // Restore builder state - self.current_function = saved_function; - self.current_block = saved_block; - self.variable_map = saved_var_map; - self.value_gen = saved_value_gen; - - Ok(()) - } - - /// Build a complete MIR module from AST - pub fn build_module(&mut self, ast: ASTNode) -> Result { - // Create a new module - let module = MirModule::new("main".to_string()); - - // Create a main function to contain the AST - let main_signature = FunctionSignature { - name: "main".to_string(), - params: vec![], - return_type: MirType::Void, - effects: EffectMask::PURE, - }; - - let entry_block = self.block_gen.next(); - let mut main_function = MirFunction::new(main_signature, entry_block); - main_function.metadata.is_entry_point = true; - - // Set up building context - self.current_module = Some(module); - self.current_function = Some(main_function); - self.current_block = Some(entry_block); - - // Add safepoint at function entry - self.emit_instruction(MirInstruction::Safepoint)?; - - // Convert AST to MIR - let result_value = self.build_expression(ast)?; - - // Add return instruction if needed - if let Some(block_id) = self.current_block { - if let Some(ref mut function) = self.current_function { - if let Some(block) = function.get_block_mut(block_id) { - if !block.is_terminated() { - block.add_instruction(MirInstruction::Return { - value: Some(result_value), - }); - } - } - } - } - - // Finalize and return module - let mut module = self.current_module.take().unwrap(); - let function = self.current_function.take().unwrap(); - module.add_function(function); - - Ok(module) - } - - /// Build an expression and return its value ID - pub(super) fn build_expression(&mut self, ast: ASTNode) -> Result { - match ast { - ASTNode::Literal { value, .. } => { - self.build_literal(value) - }, - - ASTNode::BinaryOp { left, operator, right, .. } => { - self.build_binary_op(*left, operator, *right) - }, - - ASTNode::UnaryOp { operator, operand, .. } => { - let op_string = match operator { - crate::ast::UnaryOperator::Minus => "-".to_string(), - crate::ast::UnaryOperator::Not => "not".to_string(), - }; - self.build_unary_op(op_string, *operand) - }, - - ASTNode::Variable { name, .. } => { - self.build_variable_access(name.clone()) - }, - - ASTNode::Me { .. } => { - self.build_me_expression() - }, - - ASTNode::MethodCall { object, method, arguments, .. } => { - // Early TypeOp lowering for method-style is()/as() - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - let obj_val = self.build_expression(*object.clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: obj_val, ty })?; - return Ok(dst); - } - } - self.build_method_call(*object.clone(), method.clone(), arguments.clone()) - }, - - ASTNode::FromCall { parent, method, arguments, .. } => { - self.build_from_expression(parent.clone(), method.clone(), arguments.clone()) - }, - - ASTNode::Assignment { target, value, .. } => { - // Check if target is a field access for RefSet - if let ASTNode::FieldAccess { object, field, .. } = target.as_ref() { - self.build_field_assignment(*object.clone(), field.clone(), *value.clone()) - } else if let ASTNode::Variable { name, .. } = target.as_ref() { - // Plain variable assignment - existing behavior - self.build_assignment(name.clone(), *value.clone()) - } else { - Err("Complex assignment targets not yet supported in MIR".to_string()) - } - }, - - ASTNode::FunctionCall { name, arguments, .. } => { - // Early TypeOp lowering for function-style isType()/asType() - if (name == "isType" || name == "asType") && arguments.len() == 2 { - if let Some(type_name) = Self::extract_string_literal(&arguments[1]) { - let val = self.build_expression(arguments[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - return Ok(dst); - } - } - self.build_function_call(name.clone(), arguments.clone()) - }, - - ASTNode::Print { expression, .. } => { - self.build_print_statement(*expression.clone()) - }, - - ASTNode::Program { statements, .. } => { - self.build_block(statements.clone()) - }, - - ASTNode::If { condition, then_body, else_body, .. } => { - let else_ast = if let Some(else_statements) = else_body { - Some(ASTNode::Program { - statements: else_statements.clone(), - span: crate::ast::Span::unknown(), - }) - } else { - None - }; - - self.build_if_statement( - *condition.clone(), - ASTNode::Program { - statements: then_body.clone(), - span: crate::ast::Span::unknown(), - }, - else_ast - ) - }, - - ASTNode::Loop { condition, body, .. } => { - self.build_loop_statement(*condition.clone(), body.clone()) - }, - - ASTNode::TryCatch { try_body, catch_clauses, finally_body, .. } => { - self.build_try_catch_statement(try_body.clone(), catch_clauses.clone(), finally_body.clone()) - }, - - ASTNode::Throw { expression, .. } => { - self.build_throw_statement(*expression.clone()) - }, - - ASTNode::Return { value, .. } => { - self.build_return_statement(value.clone()) - }, - - ASTNode::Local { variables, initial_values, .. } => { - self.build_local_statement(variables.clone(), initial_values.clone()) - }, - - ASTNode::BoxDeclaration { name, methods, is_static, fields, constructors, weak_fields, .. } => { - if is_static && name == "Main" { - self.build_static_main_box(methods.clone()) - } else { - // Support user-defined boxes - handle as statement, return void - // Track as user-defined (eligible for method lowering) - self.user_defined_boxes.insert(name.clone()); - self.build_box_declaration(name.clone(), methods.clone(), fields.clone(), weak_fields.clone())?; - - // Phase 2: Lower constructors (birth/N) into MIR functions - // Function name pattern: "{BoxName}.{constructor_key}" (e.g., "Person.birth/1") - for (ctor_key, ctor_ast) in constructors.clone() { - if let ASTNode::FunctionDeclaration { params, body, .. } = ctor_ast { - let func_name = format!("{}.{}", name, ctor_key); - self.lower_method_as_function(func_name, name.clone(), params.clone(), body.clone())?; - } - } - - // Phase 3: Lower instance methods into MIR functions - // Function name pattern: "{BoxName}.{method}/{N}" - for (method_name, method_ast) in methods.clone() { - if let ASTNode::FunctionDeclaration { params, body, is_static, .. } = method_ast { - if !is_static { - let func_name = format!("{}.{}{}", name, method_name, format!("/{}", params.len())); - self.lower_method_as_function(func_name, name.clone(), params.clone(), body.clone())?; - } - } - } - - // Return a void value since this is a statement - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - })?; - Ok(void_val) - } - }, - - ASTNode::FieldAccess { object, field, .. } => { - self.build_field_access(*object.clone(), field.clone()) - }, - - ASTNode::New { class, arguments, .. } => { - self.build_new_expression(class.clone(), arguments.clone()) - }, - - // Phase 7: Async operations - ASTNode::Nowait { variable, expression, .. } => { - self.build_nowait_statement(variable.clone(), *expression.clone()) - }, - - ASTNode::AwaitExpression { expression, .. } => { - self.build_await_expression(*expression.clone()) - }, - - _ => { - Err(format!("Unsupported AST node type: {:?}", ast)) - } - } - } - - /// Build a literal value - fn build_literal(&mut self, literal: LiteralValue) -> Result { - let const_value = match literal { - LiteralValue::Integer(n) => ConstValue::Integer(n), - LiteralValue::Float(f) => ConstValue::Float(f), - LiteralValue::String(s) => ConstValue::String(s), - LiteralValue::Bool(b) => ConstValue::Bool(b), - LiteralValue::Null => ConstValue::Null, - LiteralValue::Void => ConstValue::Void, - }; - - let dst = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst, - value: const_value, - })?; - - Ok(dst) - } - - /// Build a binary operation - fn build_binary_op(&mut self, left: ASTNode, operator: BinaryOperator, right: ASTNode) -> Result { - let lhs = self.build_expression(left)?; - let rhs = self.build_expression(right)?; - let dst = self.value_gen.next(); - - let mir_op = self.convert_binary_operator(operator)?; - - match mir_op { - // Arithmetic operations - BinaryOpType::Arithmetic(op) => { - self.emit_instruction(MirInstruction::BinOp { - dst, op, lhs, rhs - })?; - }, - - // Comparison operations - BinaryOpType::Comparison(op) => { - self.emit_instruction(MirInstruction::Compare { - dst, op, lhs, rhs - })?; - }, - } - - Ok(dst) - } - - /// Build a unary operation - fn build_unary_op(&mut self, operator: String, operand: ASTNode) -> Result { - let operand_val = self.build_expression(operand)?; - let dst = self.value_gen.next(); - - let mir_op = self.convert_unary_operator(operator)?; - - self.emit_instruction(MirInstruction::UnaryOp { - dst, - op: mir_op, - operand: operand_val, - })?; - - Ok(dst) - } - - /// Build variable access - fn build_variable_access(&mut self, name: String) -> Result { - if let Some(&value_id) = self.variable_map.get(&name) { - Ok(value_id) - } else { - Err(format!("Undefined variable: {}", name)) - } - } - - /// Build assignment - fn build_assignment(&mut self, var_name: String, value: ASTNode) -> Result { - let value_id = self.build_expression(value)?; - - // In SSA form, each assignment creates a new value - self.variable_map.insert(var_name.clone(), value_id); - - Ok(value_id) - } - - /// Build function call - fn build_function_call(&mut self, name: String, args: Vec) -> Result { - // Minimal TypeOp wiring via function-style: isType(value, "Type"), asType(value, "Type") - if (name == "isType" || name == "asType") && args.len() == 2 { - if let Some(type_name) = Self::extract_string_literal(&args[1]) { - let val = self.build_expression(args[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - return Ok(dst); - } - } - // Build argument values - let mut arg_values = Vec::new(); - for arg in args { - arg_values.push(self.build_expression(arg)?); - } - - let dst = self.value_gen.next(); - - // For now, treat all function calls as Box method calls - if arg_values.is_empty() { - return Err("Function calls require at least one argument (the object)".to_string()); - } - - let box_val = arg_values.remove(0); - - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(dst), - box_val, - method: name, - args: arg_values, - effects: EffectMask::PURE.add(Effect::ReadHeap), // Conservative default - })?; - - Ok(dst) - } - - /// Build print statement - converts to console output - fn build_print_statement(&mut self, expression: ASTNode) -> Result { - builder_debug_log("enter build_print_statement"); - // 根治: print(isType(...)) / print(asType(...)) / print(obj.is(...)) / print(obj.as(...)) ã¯å¿…ãšTypeOpã‚’å…ˆã«ç”Ÿæˆã—ã¦ã‹ã‚‰printã™ã‚‹ - match &expression { - ASTNode::FunctionCall { name, arguments, .. } if (name == "isType" || name == "asType") && arguments.len() == 2 => { - builder_debug_log("pattern: print(FunctionCall isType|asType)"); - if let Some(type_name) = Self::extract_string_literal(&arguments[1]) { - builder_debug_log(&format!("extract_string_literal OK: {}", type_name)); - let val = self.build_expression(arguments[0].clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if name == "isType" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - builder_debug_log(&format!("emit TypeOp {:?} value={} dst= {}", op, val, dst)); - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: val, ty })?; - self.emit_instruction(MirInstruction::Print { value: dst, effects: EffectMask::PURE.add(Effect::Io) })?; - return Ok(dst); - } else { - builder_debug_log("extract_string_literal FAIL"); - } - } - ASTNode::MethodCall { object, method, arguments, .. } if (method == "is" || method == "as") && arguments.len() == 1 => { - builder_debug_log("pattern: print(MethodCall is|as)"); - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - builder_debug_log(&format!("extract_string_literal OK: {}", type_name)); - let obj_val = self.build_expression(*object.clone())?; - let ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - builder_debug_log(&format!("emit TypeOp {:?} obj={} dst= {}", op, obj_val, dst)); - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: obj_val, ty })?; - self.emit_instruction(MirInstruction::Print { value: dst, effects: EffectMask::PURE.add(Effect::Io) })?; - return Ok(dst); - } else { - builder_debug_log("extract_string_literal FAIL"); - } - } - _ => {} - } - - let value = self.build_expression(expression)?; - builder_debug_log(&format!("fallback print value={}", value)); - - // For now, use a special Print instruction (minimal scope) - self.emit_instruction(MirInstruction::Print { - value, - effects: EffectMask::PURE.add(Effect::Io), - })?; - - // Return the value that was printed - Ok(value) - } - - /// Build a block of statements - fn build_block(&mut self, statements: Vec) -> Result { - let mut last_value = None; - - for statement in statements { - last_value = Some(self.build_expression(statement)?); - } - - // Return last value or void - Ok(last_value.unwrap_or_else(|| { - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - }).unwrap(); - void_val - })) - } - - /// Build if statement with conditional branches - fn build_if_statement(&mut self, condition: ASTNode, then_branch: ASTNode, else_branch: Option) -> Result { - let condition_val = self.build_expression(condition)?; - - // Create basic blocks for then/else/merge - let then_block = self.block_gen.next(); - let else_block = self.block_gen.next(); - let merge_block = self.block_gen.next(); - - // Emit branch instruction in current block - self.emit_instruction(MirInstruction::Branch { - condition: condition_val, - then_bb: then_block, - else_bb: else_block, - })?; - - // Build then branch - self.current_block = Some(then_block); - self.ensure_block_exists(then_block)?; - // Keep a copy of AST for analysis (phi for variable reassignment) - let then_ast_for_analysis = then_branch.clone(); - let then_value = self.build_expression(then_branch)?; - if !self.is_current_block_terminated() { - self.emit_instruction(MirInstruction::Jump { target: merge_block })?; - } - - // Build else branch - self.current_block = Some(else_block); - self.ensure_block_exists(else_block)?; - let (else_value, else_ast_for_analysis) = if let Some(else_ast) = else_branch { - let val = self.build_expression(else_ast.clone())?; - (val, Some(else_ast)) - } else { - // No else branch, use void - let void_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_val, - value: ConstValue::Void, - })?; - (void_val, None) - }; - if !self.is_current_block_terminated() { - self.emit_instruction(MirInstruction::Jump { target: merge_block })?; - } - - // Create merge block with phi function - self.current_block = Some(merge_block); - self.ensure_block_exists(merge_block)?; - let result_val = self.value_gen.next(); - - self.emit_instruction(MirInstruction::Phi { - dst: result_val, - inputs: vec![ - (then_block, then_value), - (else_block, else_value), - ], - })?; - - // Heuristic: If both branches assign the same variable name, bind that variable to the phi result - let assigned_var_then = Self::extract_assigned_var(&then_ast_for_analysis); - let assigned_var_else = else_ast_for_analysis.as_ref().and_then(|a| Self::extract_assigned_var(a)); - if let (Some(a), Some(b)) = (assigned_var_then, assigned_var_else) { - if a == b { - self.variable_map.insert(a, result_val); - } - } - - Ok(result_val) - } - - /// Extract assigned variable name from an AST node if it represents an assignment to a variable. - /// Handles direct Assignment and Program with trailing single-statement Assignment. - fn extract_assigned_var(ast: &ASTNode) -> Option { - match ast { - ASTNode::Assignment { target, .. } => { - if let ASTNode::Variable { name, .. } = target.as_ref() { Some(name.clone()) } else { None } - } - ASTNode::Program { statements, .. } => { - // Inspect the last statement as the resulting value of the block - statements.last().and_then(|st| Self::extract_assigned_var(st)) - } - _ => None, - } - } - - /// Emit an instruction to the current basic block - pub(super) fn emit_instruction(&mut self, instruction: MirInstruction) -> Result<(), String> { - let block_id = self.current_block.ok_or("No current basic block")?; - - if let Some(ref mut function) = self.current_function { - if let Some(block) = function.get_block_mut(block_id) { - if builder_debug_enabled() { - eprintln!("[BUILDER] emit @bb{} -> {}", block_id, match &instruction { - MirInstruction::TypeOp { dst, op, value, ty } => format!("typeop {:?} {} {:?} -> {}", op, value, ty, dst), - MirInstruction::Print { value, .. } => format!("print {}", value), - MirInstruction::BoxCall { box_val, method, args, dst, .. } => format!("boxcall {}.{}({:?}) -> {:?}", box_val, method, args, dst), - MirInstruction::Call { func, args, dst, .. } => format!("call {}({:?}) -> {:?}", func, args, dst), - MirInstruction::NewBox { dst, box_type, args } => format!("new {}({:?}) -> {}", box_type, args, dst), - MirInstruction::Const { dst, value } => format!("const {:?} -> {}", value, dst), - MirInstruction::Branch { condition, then_bb, else_bb } => format!("br {}, {}, {}", condition, then_bb, else_bb), - MirInstruction::Jump { target } => format!("br {}", target), - _ => format!("{:?}", instruction), - }); - } - block.add_instruction(instruction); - Ok(()) - } else { - Err(format!("Basic block {} does not exist", block_id)) - } - } else { - Err("No current function".to_string()) - } - } - - /// Ensure a basic block exists in the current function - pub(super) fn ensure_block_exists(&mut self, block_id: BasicBlockId) -> Result<(), String> { - if let Some(ref mut function) = self.current_function { - if !function.blocks.contains_key(&block_id) { - let block = BasicBlock::new(block_id); - function.add_block(block); - } - Ok(()) - } else { - Err("No current function".to_string()) - } - } - - /// Build a loop statement: loop(condition) { body } - fn build_loop_statement(&mut self, condition: ASTNode, body: Vec) -> Result { - // Use the specialized LoopBuilder for proper SSA loop construction - let mut loop_builder = super::loop_builder::LoopBuilder::new(self); - loop_builder.build_loop(condition, body) - } - - /// Build a try/catch statement - fn build_try_catch_statement(&mut self, try_body: Vec, catch_clauses: Vec, finally_body: Option>) -> Result { - let try_block = self.block_gen.next(); - let catch_block = self.block_gen.next(); - let finally_block = if finally_body.is_some() { Some(self.block_gen.next()) } else { None }; - let exit_block = self.block_gen.next(); - - // Set up exception handler for the try block (before we enter it) - if let Some(catch_clause) = catch_clauses.first() { - let exception_value = self.value_gen.next(); - - // Register catch handler for exceptions that may occur in try block - self.emit_instruction(MirInstruction::Catch { - exception_type: catch_clause.exception_type.clone(), - exception_value, - handler_bb: catch_block, - })?; - } - - // Jump to try block - self.emit_instruction(MirInstruction::Jump { target: try_block })?; - - // Build try block - self.start_new_block(try_block)?; - - let try_ast = ASTNode::Program { - statements: try_body, - span: crate::ast::Span::unknown(), - }; - let _try_result = self.build_expression(try_ast)?; - - // Normal completion of try block - jump to finally or exit (if not already terminated) - if !self.is_current_block_terminated() { - let next_target = finally_block.unwrap_or(exit_block); - self.emit_instruction(MirInstruction::Jump { target: next_target })?; - } - - // Build catch block (reachable via exception handling) - self.start_new_block(catch_block)?; - - // Handle catch clause - if let Some(catch_clause) = catch_clauses.first() { - // Build catch body - let catch_ast = ASTNode::Program { - statements: catch_clause.body.clone(), - span: crate::ast::Span::unknown(), - }; - self.build_expression(catch_ast)?; - } - - // Catch completion - jump to finally or exit (if not already terminated) - if !self.is_current_block_terminated() { - let next_target = finally_block.unwrap_or(exit_block); - self.emit_instruction(MirInstruction::Jump { target: next_target })?; - } - - // Build finally block if present - if let (Some(finally_block_id), Some(finally_statements)) = (finally_block, finally_body) { - self.start_new_block(finally_block_id)?; - - let finally_ast = ASTNode::Program { - statements: finally_statements, - span: crate::ast::Span::unknown(), - }; - self.build_expression(finally_ast)?; - - self.emit_instruction(MirInstruction::Jump { target: exit_block })?; - } - - // Create exit block - self.start_new_block(exit_block)?; - - // Return void for now (in a complete implementation, would use phi for try/catch values) - let result = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: result, - value: ConstValue::Void, - })?; - - Ok(result) - } - - /// Build a throw statement - fn build_throw_statement(&mut self, expression: ASTNode) -> Result { - let exception_value = self.build_expression(expression)?; - - // Emit throw instruction with PANIC effect (this is a terminator) - self.emit_instruction(MirInstruction::Throw { - exception: exception_value, - effects: EffectMask::PANIC, - })?; - - // Throw doesn't return normally, but we need to return a value for the type system - // We can't add more instructions after throw, so just return the exception value - Ok(exception_value) - } - - /// Build local variable declarations with optional initial values - fn build_local_statement(&mut self, variables: Vec, initial_values: Vec>>) -> Result { - let mut last_value = None; - - // Process each variable declaration - for (i, var_name) in variables.iter().enumerate() { - let value_id = if i < initial_values.len() && initial_values[i].is_some() { - // Variable has initial value - evaluate it - let init_expr = initial_values[i].as_ref().unwrap(); - self.build_expression(*init_expr.clone())? - } else { - // No initial value - do not emit a const; leave uninitialized until assigned - // Use a fresh SSA id only for name binding; consumers should not use it before assignment - self.value_gen.next() - }; - - // Register variable in SSA form - self.variable_map.insert(var_name.clone(), value_id); - last_value = Some(value_id); - } - - // Return the last bound value id (no emission); callers shouldn't rely on this value - Ok(last_value.unwrap_or_else(|| { - // create a dummy id without emission - self.value_gen.next() - })) - } - - /// Build return statement - fn build_return_statement(&mut self, value: Option>) -> Result { - let return_value = if let Some(expr) = value { - self.build_expression(*expr)? - } else { - // Return void if no value specified - let void_dst = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: void_dst, - value: ConstValue::Void, - })?; - void_dst - }; - - // Emit return instruction - self.emit_instruction(MirInstruction::Return { - value: Some(return_value), - })?; - - Ok(return_value) - } - - /// Build static box Main - extracts main() method body and converts to Program - fn build_static_main_box(&mut self, methods: std::collections::HashMap) -> Result { - // Look for the main() method - if let Some(main_method) = methods.get("main") { - if let ASTNode::FunctionDeclaration { body, .. } = main_method { - // Convert the method body to a Program AST node and lower it - let program_ast = ASTNode::Program { - statements: body.clone(), - span: crate::ast::Span::unknown(), - }; - - // Use existing Program lowering logic - self.build_expression(program_ast) - } else { - Err("main method in static box Main is not a FunctionDeclaration".to_string()) - } - } else { - Err("static box Main must contain a main() method".to_string()) - } - } - - /// Build field access: object.field - fn build_field_access(&mut self, object: ASTNode, field: String) -> Result { - // Clone the object before building expression if we need to check it later - let object_clone = object.clone(); - - // First, build the object expression to get its ValueId - let object_value = self.build_expression(object)?; - - // Get the field from the object using RefGet - let field_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::RefGet { - dst: field_val, - reference: object_value, - field: field.clone(), - })?; - - // If we recorded origin class for this field on this base object, propagate it to this value id - if let Some(class_name) = self.field_origin_class.get(&(object_value, field.clone())).cloned() { - self.value_origin_newbox.insert(field_val, class_name); - } - - // If we can infer the box type and the field is weak, emit WeakLoad (+ optional barrier) - let mut inferred_class: Option = self.value_origin_newbox.get(&object_value).cloned(); - // Fallback: if the object is a nested field access like (X.Y).Z, consult recorded field origins for X.Y - if inferred_class.is_none() { - if let ASTNode::FieldAccess { object: inner_obj, field: ref parent_field, .. } = object_clone { - // Build inner base to get a stable id and consult mapping - if let Ok(base_id) = self.build_expression(*inner_obj.clone()) { - if let Some(cls) = self.field_origin_class.get(&(base_id, parent_field.clone())) { - inferred_class = Some(cls.clone()); - } - } - } - } - if let Some(class_name) = inferred_class { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - // Barrier (read) PoC - let _ = self.emit_barrier_read(field_val); - // WeakLoad - let loaded = self.emit_weak_load(field_val)?; - return Ok(loaded); - } - } - } - - Ok(field_val) - } - - /// Build new expression: new ClassName(arguments) - fn build_new_expression(&mut self, class: String, arguments: Vec) -> Result { - // Phase 9.78a: Unified Box creation using NewBox instruction - - // First, evaluate all arguments to get their ValueIds - let mut arg_values = Vec::new(); - for arg in arguments { - let arg_value = self.build_expression(arg)?; - arg_values.push(arg_value); - } - - // Generate the destination ValueId - let dst = self.value_gen.next(); - - // Emit NewBox instruction for all Box types - // VM will handle optimization for basic types internally - self.emit_instruction(MirInstruction::NewBox { - dst, - box_type: class.clone(), - args: arg_values.clone(), - })?; - - // Record origin for optimization: dst was created by NewBox of class - self.value_origin_newbox.insert(dst, class); - - // Immediately call birth(...) on the created instance to run constructor semantics. - // birth typically returns void; we don't capture the result here (dst: None) - self.emit_instruction(MirInstruction::BoxCall { - dst: None, - box_val: dst, - method: "birth".to_string(), - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - - Ok(dst) - } - - /// Build field assignment: object.field = value - fn build_field_assignment(&mut self, object: ASTNode, field: String, value: ASTNode) -> Result { - // Build the object and value expressions - let object_value = self.build_expression(object)?; - let mut value_result = self.build_expression(value)?; - - // If we can infer the box type and the field is weak, create WeakRef before store - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - value_result = self.emit_weak_new(value_result)?; - } - } - } - - // Set the field using RefSet - self.emit_instruction(MirInstruction::RefSet { - reference: object_value, - field: field.clone(), - value: value_result, - })?; - - // Emit a write barrier for weak fields (PoC) - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - if let Some(weak_set) = self.weak_fields_by_box.get(&class_name) { - if weak_set.contains(&field) { - let _ = self.emit_barrier_write(value_result); - } - } - } - - // Record origin class for this field (if the value originates from NewBox of a known class) - if let Some(class_name) = self.value_origin_newbox.get(&value_result).cloned() { - self.field_origin_class.insert((object_value, field.clone()), class_name); - } - - // Return the assigned value - Ok(value_result) - } - - /// Start a new basic block - pub(super) fn start_new_block(&mut self, block_id: BasicBlockId) -> Result<(), String> { - if let Some(ref mut function) = self.current_function { - function.add_block(BasicBlock::new(block_id)); - self.current_block = Some(block_id); - Ok(()) - } else { - Err("No current function".to_string()) - } - } - - /// Check if the current basic block is terminated - fn is_current_block_terminated(&self) -> bool { - if let (Some(block_id), Some(ref function)) = (self.current_block, &self.current_function) { - if let Some(block) = function.get_block(block_id) { - return block.is_terminated(); - } - } - false - } - - /// Convert AST binary operator to MIR operator - fn convert_binary_operator(&self, op: BinaryOperator) -> Result { - match op { - BinaryOperator::Add => Ok(BinaryOpType::Arithmetic(BinaryOp::Add)), - BinaryOperator::Subtract => Ok(BinaryOpType::Arithmetic(BinaryOp::Sub)), - BinaryOperator::Multiply => Ok(BinaryOpType::Arithmetic(BinaryOp::Mul)), - BinaryOperator::Divide => Ok(BinaryOpType::Arithmetic(BinaryOp::Div)), - BinaryOperator::Modulo => Ok(BinaryOpType::Arithmetic(BinaryOp::Mod)), - BinaryOperator::Equal => Ok(BinaryOpType::Comparison(CompareOp::Eq)), - BinaryOperator::NotEqual => Ok(BinaryOpType::Comparison(CompareOp::Ne)), - BinaryOperator::Less => Ok(BinaryOpType::Comparison(CompareOp::Lt)), - BinaryOperator::LessEqual => Ok(BinaryOpType::Comparison(CompareOp::Le)), - BinaryOperator::Greater => Ok(BinaryOpType::Comparison(CompareOp::Gt)), - BinaryOperator::GreaterEqual => Ok(BinaryOpType::Comparison(CompareOp::Ge)), - BinaryOperator::And => Ok(BinaryOpType::Arithmetic(BinaryOp::And)), - BinaryOperator::Or => Ok(BinaryOpType::Arithmetic(BinaryOp::Or)), - } - } - - /// Convert AST unary operator to MIR operator - fn convert_unary_operator(&self, op: String) -> Result { - match op.as_str() { - "-" => Ok(UnaryOp::Neg), - "!" | "not" => Ok(UnaryOp::Not), - "~" => Ok(UnaryOp::BitNot), - _ => Err(format!("Unsupported unary operator: {}", op)), - } - } - - /// Build nowait statement: nowait variable = expression - fn build_nowait_statement(&mut self, variable: String, expression: ASTNode) -> Result { - // Evaluate the expression - let expression_value = self.build_expression(expression)?; - - // Create a new Future with the evaluated expression as the initial value - let future_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::FutureNew { - dst: future_id, - value: expression_value, - })?; - - // Store the future in the variable - self.variable_map.insert(variable.clone(), future_id); - - Ok(future_id) - } - - /// Build await expression: await expression - fn build_await_expression(&mut self, expression: ASTNode) -> Result { - // Evaluate the expression (should be a Future) - let future_value = self.build_expression(expression)?; - - // Create destination for await result - let result_id = self.value_gen.next(); - - // Emit await instruction - self.emit_instruction(MirInstruction::Await { - dst: result_id, - future: future_value, - })?; - - Ok(result_id) - } - - /// Build me expression: me - fn build_me_expression(&mut self) -> Result { - // If lowering a method/birth function, "me" should be a parameter - if let Some(id) = self.variable_map.get("me").cloned() { - return Ok(id); - } - - // Fallback: use a symbolic constant (legacy behavior) - let me_value = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: me_value, - value: ConstValue::String("__me__".to_string()), - })?; - // Register a stable mapping so subsequent 'me' resolves to the same ValueId - self.variable_map.insert("me".to_string(), me_value); - Ok(me_value) - } - - /// Build method call: object.method(arguments) - fn build_method_call(&mut self, object: ASTNode, method: String, arguments: Vec) -> Result { - // Minimal TypeOp wiring via method-style syntax: value.is("Type") / value.as("Type") - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - // Build the object expression - let object_value = self.build_expression(object.clone())?; - // Map string to MIR type - let mir_ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: object_value, ty: mir_ty })?; - return Ok(dst); - } - } - // ExternCall判定ã¯objectã®å¤‰æ•°è§£æ±ºã‚ˆã‚Šå…ˆã«è¡Œã†ï¼ˆæœªå®šç¾©å¤‰æ•°ã§è½ã¨ã•ãªã„) - if let ASTNode::Variable { name: object_name, .. } = object.clone() { - // Build argument expressions first (externã¯object自体を使ã‚ãªã„) - let mut arg_values = Vec::new(); - for arg in &arguments { - arg_values.push(self.build_expression(arg.clone())?); - } - match (object_name.as_str(), method.as_str()) { - ("console", "log") => { - self.emit_instruction(MirInstruction::ExternCall { - dst: None, - iface_name: "env.console".to_string(), - method_name: "log".to_string(), - args: arg_values, - effects: EffectMask::IO, - })?; - let void_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_id, value: ConstValue::Void })?; - return Ok(void_id); - }, - ("canvas", "fillRect") | ("canvas", "fillText") => { - self.emit_instruction(MirInstruction::ExternCall { - dst: None, - iface_name: "env.canvas".to_string(), - method_name: method, - args: arg_values, - effects: EffectMask::IO, - })?; - let void_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: void_id, value: ConstValue::Void })?; - return Ok(void_id); - }, - _ => {} - } - } - - // Build the object expression - let object_value = self.build_expression(object.clone())?; - - // Secondary interception for is/as in case early path did not trigger - if (method == "is" || method == "as") && arguments.len() == 1 { - if let Some(type_name) = Self::extract_string_literal(&arguments[0]) { - let mir_ty = Self::parse_type_name_to_mir(&type_name); - let dst = self.value_gen.next(); - let op = if method == "is" { super::TypeOpKind::Check } else { super::TypeOpKind::Cast }; - self.emit_instruction(MirInstruction::TypeOp { dst, op, value: object_value, ty: mir_ty })?; - return Ok(dst); - } - } - - // Build argument expressions - let mut arg_values = Vec::new(); - for arg in &arguments { - arg_values.push(self.build_expression(arg.clone())?); - } - - // Create result value - let result_id = self.value_gen.next(); - - // Optimization: If the object is a direct `new ClassName(...)`, lower to a direct Call - if let ASTNode::New { class, .. } = object { - // Build function name and only lower to Call if the function exists (user-defined) - let func_name = format!("{}.{}{}", class, method, format!("/{}", arg_values.len())); - let can_lower = self.user_defined_boxes.contains(&class) - && if let Some(ref module) = self.current_module { module.functions.contains_key(&func_name) } else { false }; - if can_lower { - let func_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: func_val, value: ConstValue::String(func_name) })?; - let mut call_args = Vec::with_capacity(arg_values.len() + 1); - call_args.push(object_value); - call_args.extend(arg_values); - self.emit_instruction(MirInstruction::Call { - dst: Some(result_id), - func: func_val, - args: call_args, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - return Ok(result_id); - } - // else fall through to BoxCall below - } else { - // If the object originates from a NewBox in this function, we can lower to Call as well - if let Some(class_name) = self.value_origin_newbox.get(&object_value).cloned() { - let func_name = format!("{}.{}{}", class_name, method, format!("/{}", arg_values.len())); - let can_lower = self.user_defined_boxes.contains(&class_name) - && if let Some(ref module) = self.current_module { module.functions.contains_key(&func_name) } else { false }; - if can_lower { - let func_val = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { dst: func_val, value: ConstValue::String(func_name) })?; - let mut call_args = Vec::with_capacity(arg_values.len() + 1); - call_args.push(object_value); - call_args.extend(arg_values); - self.emit_instruction(MirInstruction::Call { - dst: Some(result_id), - func: func_val, - args: call_args, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - return Ok(result_id); - } - } - } - - // Fallback: Emit a BoxCall instruction for regular or plugin/builtin method calls - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(result_id), - box_val: object_value, - method, - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), // Method calls may have side effects - })?; - Ok(result_id) - } - - /// Map a user-facing type name to MIR type - fn parse_type_name_to_mir(name: &str) -> super::MirType { - match name { - "Integer" | "Int" | "I64" => super::MirType::Integer, - "Float" | "F64" => super::MirType::Float, - "Bool" | "Boolean" => super::MirType::Bool, - "String" => super::MirType::String, - "Void" | "Unit" => super::MirType::Void, - other => super::MirType::Box(other.to_string()), - } - } - - /// Extract string literal from AST node if possible - /// Supports: Literal("Type") and new StringBox("Type") - fn extract_string_literal(node: &ASTNode) -> Option { - let mut cur = node; - loop { - match cur { - ASTNode::Literal { value: crate::ast::LiteralValue::String(s), .. } => return Some(s.clone()), - ASTNode::New { class, arguments, .. } if class == "StringBox" && arguments.len() == 1 => { - cur = &arguments[0]; - continue; - } - _ => return None, - } - } - } - - /// Build from expression: from Parent.method(arguments) - fn build_from_expression(&mut self, parent: String, method: String, arguments: Vec) -> Result { - // Build argument expressions - let mut arg_values = Vec::new(); - for arg in arguments { - arg_values.push(self.build_expression(arg)?); - } - - // Create a synthetic "parent reference" value - let parent_value = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: parent_value, - value: ConstValue::String(parent), - })?; - - // Create result value - let result_id = self.value_gen.next(); - - // Emit a BoxCall instruction for delegation - self.emit_instruction(MirInstruction::BoxCall { - dst: Some(result_id), - box_val: parent_value, - method, - args: arg_values, - effects: EffectMask::READ.add(Effect::ReadHeap), - })?; - - Ok(result_id) - } - - /// Build box declaration: box Name { fields... methods... } - fn build_box_declaration(&mut self, name: String, methods: std::collections::HashMap, fields: Vec, weak_fields: Vec) -> Result<(), String> { - // For Phase 8.4, we'll emit metadata instructions to register the box type - // In a full implementation, this would register type information for later use - - // Create a type registration constant - let type_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: type_id, - value: ConstValue::String(format!("__box_type_{}", name)), - })?; - - // For each field, emit metadata about the field - for field in fields { - let field_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: field_id, - value: ConstValue::String(format!("__field_{}_{}", name, field)), - })?; - } - - // Record weak fields for this box - if !weak_fields.is_empty() { - let set: HashSet = weak_fields.into_iter().collect(); - self.weak_fields_by_box.insert(name.clone(), set); - } - - // Process methods - now methods is a HashMap - for (method_name, method_ast) in methods { - if let ASTNode::FunctionDeclaration { .. } = method_ast { - let method_id = self.value_gen.next(); - self.emit_instruction(MirInstruction::Const { - dst: method_id, - value: ConstValue::String(format!("__method_{}_{}", name, method_name)), - })?; - } - } - - Ok(()) - } -} - -/// Helper enum for binary operator classification -#[derive(Debug)] -enum BinaryOpType { - Arithmetic(BinaryOp), - Comparison(CompareOp), -} - -impl Default for MirBuilder { - fn default() -> Self { - Self::new() - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::ast::{ASTNode, LiteralValue, Span}; - - #[test] - fn test_literal_building() { - let mut builder = MirBuilder::new(); - - let ast = ASTNode::Literal { - value: LiteralValue::Integer(42), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - assert_eq!(module.function_names().len(), 1); - assert!(module.get_function("main").is_some()); - } - - #[test] - fn test_binary_op_building() { - let mut builder = MirBuilder::new(); - - let ast = ASTNode::BinaryOp { - left: Box::new(ASTNode::Literal { - value: LiteralValue::Integer(10), - span: Span::unknown(), - }), - operator: BinaryOperator::Add, - right: Box::new(ASTNode::Literal { - value: LiteralValue::Integer(32), - span: Span::unknown(), - }), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - let function = module.get_function("main").unwrap(); - - // Should have constants and binary operation - let stats = function.stats(); - assert!(stats.instruction_count >= 3); // 2 constants + 1 binop + 1 return - } - - #[test] - fn test_if_statement_building() { - let mut builder = MirBuilder::new(); - - // Adapt test to current AST: If with statement bodies - let ast = ASTNode::If { - condition: Box::new(ASTNode::Literal { - value: LiteralValue::Bool(true), - span: Span::unknown(), - }), - then_body: vec![ASTNode::Literal { - value: LiteralValue::Integer(1), - span: Span::unknown(), - }], - else_body: Some(vec![ASTNode::Literal { - value: LiteralValue::Integer(2), - span: Span::unknown(), - }]), - span: Span::unknown(), - }; - - let result = builder.build_module(ast); - assert!(result.is_ok()); - - let module = result.unwrap(); - let function = module.get_function("main").unwrap(); - - // Should have multiple blocks for if/then/else/merge - assert!(function.blocks.len() >= 3); - - // Should have phi function in merge block - let stats = function.stats(); - assert!(stats.phi_count >= 1); - } -} diff --git a/src/parser.rs.backup b/src/parser.rs.backup deleted file mode 100644 index 18cc030e..00000000 --- a/src/parser.rs.backup +++ /dev/null @@ -1,2279 +0,0 @@ -/*! - * Nyash Parser - Rust Implementation - * - * Python版nyashc_v4.pyã®NyashParserã‚’Rustã§å®Œå…¨å†å®Ÿè£… - * Token列をAST (Abstract Syntax Tree) ã«å¤‰æ› - */ - -use crate::tokenizer::{Token, TokenType, TokenizeError}; -use crate::ast::{ASTNode, BinaryOperator, LiteralValue, UnaryOperator, CatchClause, Span}; -use std::collections::HashMap; -use thiserror::Error; - -/// 🔥 Loop構造情報 - 2段階パーサー用 -#[derive(Debug, Clone)] -struct LoopStructure { - condition_tokens: Vec, - body_tokens: Vec, -} - -/// 🌟 If構造情報 - 2段階パーサー用 -#[derive(Debug, Clone)] -struct IfStructure { - condition_tokens: Vec, - then_body_tokens: Vec, - else_if_clauses: Vec, - else_body_tokens: Option>, -} - -/// else ifç¯€ã®æ§‹é€  -#[derive(Debug, Clone)] -struct ElseIfClause { - condition_tokens: Vec, - body_tokens: Vec, -} - -/// パースエラー -#[derive(Error, Debug)] -pub enum ParseError { - #[error("Unexpected token {found:?}, expected {expected} at line {line}")] - UnexpectedToken { found: TokenType, expected: String, line: usize }, - - #[error("Unexpected end of file")] - UnexpectedEOF, - - #[error("Invalid expression at line {line}")] - InvalidExpression { line: usize }, - - #[error("Invalid statement at line {line}")] - InvalidStatement { line: usize }, - - #[error("Circular dependency detected between static boxes: {cycle}")] - CircularDependency { cycle: String }, - - #[error("Tokenize error: {0}")] - TokenizeError(#[from] TokenizeError), -} - -/// Nyashパーサー - トークン列をASTã«å¤‰æ› -pub struct NyashParser { - tokens: Vec, - current: usize, - /// 🔥 Static boxä¾å­˜é–¢ä¿‚追跡(循環ä¾å­˜æ¤œå‡ºç”¨ï¼‰ - static_box_dependencies: std::collections::HashMap>, -} - -impl NyashParser { - /// æ–°ã—ã„ãƒ‘ãƒ¼ã‚µãƒ¼ã‚’ä½œæˆ - pub fn new(tokens: Vec) -> Self { - Self { - tokens, - current: 0, - static_box_dependencies: std::collections::HashMap::new(), - } - } - - /// 文字列ã‹ã‚‰ãƒ‘ース (トークナイズ + パース) - pub fn parse_from_string(input: impl Into) -> Result { - let mut tokenizer = crate::tokenizer::NyashTokenizer::new(input); - let tokens = tokenizer.tokenize()?; - - let mut parser = Self::new(tokens); - parser.parse() - } - - /// パース実行 - Program ASTを返㙠- pub fn parse(&mut self) -> Result { - self.parse_program() - } - - // ===== パース関数群 ===== - - /// プログラム全体をパース - fn parse_program(&mut self) -> Result { - let mut statements = Vec::new(); - - while !self.is_at_end() { - // EOF tokenã¯ã‚¹ã‚­ãƒƒãƒ— - if matches!(self.current_token().token_type, TokenType::EOF) { - break; - } - - // NEWLINE tokenã¯ã‚¹ã‚­ãƒƒãƒ—(文ã®åŒºåˆ‡ã‚Šã¨ã—ã¦ä½¿ç”¨ï¼‰ - if matches!(self.current_token().token_type, TokenType::NEWLINE) { - self.advance(); - continue; - } - - let statement = self.parse_statement()?; - statements.push(statement); - } - - // 🔥 ã™ã¹ã¦ã®static boxè§£æžå¾Œã«å¾ªç’°ä¾å­˜æ¤œå‡º - self.check_circular_dependencies()?; - - Ok(ASTNode::Program { statements, span: Span::unknown() }) - } - - /// 文をパース - fn parse_statement(&mut self) -> Result { - match &self.current_token().token_type { - TokenType::BOX => self.parse_box_declaration(), - TokenType::INTERFACE => self.parse_interface_box_declaration(), - TokenType::GLOBAL => self.parse_global_var(), - TokenType::FUNCTION => self.parse_function_declaration(), - TokenType::STATIC => self.parse_static_declaration(), // 🔥 é™çš„宣言 (function/box) - TokenType::IF => self.parse_if(), - TokenType::LOOP => self.parse_loop(), - TokenType::BREAK => self.parse_break(), - TokenType::RETURN => self.parse_return(), - TokenType::PRINT => self.parse_print(), - TokenType::NOWAIT => self.parse_nowait(), - TokenType::INCLUDE => self.parse_include(), - TokenType::LOCAL => self.parse_local(), - TokenType::OUTBOX => self.parse_outbox(), - TokenType::TRY => self.parse_try_catch(), - TokenType::THROW => self.parse_throw(), - TokenType::IDENTIFIER(_) => { - // function宣言 ã¾ãŸã¯ 代入文 ã¾ãŸã¯ 関数呼ã³å‡ºã— - self.parse_assignment_or_function_call() - } - TokenType::THIS | TokenType::ME => { - // this/me ã§å§‹ã¾ã‚‹æ–‡ã‚‚通常ã®ä»£å…¥æ–‡ã¾ãŸã¯é–¢æ•°å‘¼ã³å‡ºã—ã¨ã—ã¦å‡¦ç† - self.parse_assignment_or_function_call() - } - _ => { - let line = self.current_token().line; - Err(ParseError::InvalidStatement { line }) - } - } - } - - /// box宣言をパース: box Name { fields... methods... } - fn parse_box_declaration(&mut self) -> Result { - self.consume(TokenType::BOX)?; - - let name = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "identifier".to_string(), - line, - }); - }; - - // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹ãƒ‘ラメータã®ãƒ‘ース () - let type_parameters = if self.match_token(&TokenType::LESS) { - self.advance(); // consume '<' - let mut params = Vec::new(); - - loop { - if let TokenType::IDENTIFIER(param_name) = &self.current_token().token_type { - params.push(param_name.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); // consume ',' - } else { - break; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "type parameter name".to_string(), - line, - }); - } - } - - self.consume(TokenType::GREATER)?; // consume '>' - params - } else { - Vec::new() - }; - - // fromå¥ã®ãƒ‘ース(継承) - let extends = if self.match_token(&TokenType::FROM) { - self.advance(); // consume 'from' - - if let TokenType::IDENTIFIER(parent_name) = &self.current_token().token_type { - let parent_name = parent_name.clone(); - self.advance(); - Some(parent_name) - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "parent class name".to_string(), - line, - }); - } - } else { - None - }; - - // interfaceå¥ã®ãƒ‘ース(インターフェース実装) - let implements = if self.match_token(&TokenType::INTERFACE) { - self.advance(); // consume 'interface' - - let mut interface_list = Vec::new(); - - loop { - if let TokenType::IDENTIFIER(interface_name) = &self.current_token().token_type { - interface_list.push(interface_name.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); // consume ',' - } else { - break; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "interface name".to_string(), - line, - }); - } - } - - interface_list - } else { - vec![] - }; - - self.consume(TokenType::LBRACE)?; - self.skip_newlines(); // ãƒ–ãƒ¬ãƒ¼ã‚¹å¾Œã®æ”¹è¡Œã‚’スキップ - - let mut fields = Vec::new(); - let mut methods = HashMap::new(); - let mut constructors = HashMap::new(); - let mut init_fields = Vec::new(); - - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); // ãƒ«ãƒ¼ãƒ—é–‹å§‹æ™‚ã«æ”¹è¡Œã‚’スキップ - - // RBRACEã«åˆ°é”ã—ã¦ã„れã°ãƒ«ãƒ¼ãƒ—を抜ã‘ã‚‹ - if self.match_token(&TokenType::RBRACE) { - break; - } - - // initブロックã®å‡¦ç† - if self.match_token(&TokenType::INIT) { - self.advance(); // consume 'init' - self.consume(TokenType::LBRACE)?; - - // initブロック内ã®ãƒ•ィールド定義を読ã¿è¾¼ã¿ - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - - if self.match_token(&TokenType::RBRACE) { - break; - } - - if let TokenType::IDENTIFIER(field_name) = &self.current_token().token_type { - init_fields.push(field_name.clone()); - self.advance(); - - // カンマãŒã‚れã°ã‚¹ã‚­ãƒƒãƒ— - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } else { - // 䏿­£ãªãƒˆãƒ¼ã‚¯ãƒ³ãŒã‚ã‚‹å ´åˆã¯ã‚¨ãƒ©ãƒ¼ - return Err(ParseError::UnexpectedToken { - expected: "field name".to_string(), - found: self.current_token().token_type.clone(), - line: self.current_token().line, - }); - } - } - - self.consume(TokenType::RBRACE)?; - continue; - } - - if let TokenType::IDENTIFIER(field_or_method) = &self.current_token().token_type { - let field_or_method = field_or_method.clone(); - self.advance(); - - // メソッド定義ã¾ãŸã¯ã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ã‹ï¼Ÿ - if self.match_token(&TokenType::LPAREN) { - // Boxåã¨åŒã˜å ´åˆã¯ã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ - if field_or_method == name { - // コンストラクタã®å‡¦ç† - self.advance(); // consume '(' - - let mut params = Vec::new(); - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - } - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - self.consume(TokenType::LBRACE)?; - - let mut body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - if !self.match_token(&TokenType::RBRACE) { - body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - - let constructor = ASTNode::FunctionDeclaration { - name: field_or_method.clone(), - params: params.clone(), - body, - is_static: false, // コンストラクタã¯é™çš„ã§ãªã„ - span: Span::unknown(), - }; - - // ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿ã®æ•°ã§ã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ã‚’区別 - let constructor_key = format!("{}/{}", field_or_method, params.len()); - constructors.insert(constructor_key, constructor); - } else { - // 通常ã®ãƒ¡ã‚½ãƒƒãƒ‰å®šç¾© - self.advance(); // consume '(' - - let mut params = Vec::new(); - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - } - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - self.consume(TokenType::LBRACE)?; - - let mut body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); // ãƒ¡ã‚½ãƒƒãƒ‰æœ¬ä½“å†…ã®æ”¹è¡Œã‚’スキップ - if !self.match_token(&TokenType::RBRACE) { - body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - - let method = ASTNode::FunctionDeclaration { - name: field_or_method.clone(), - params, - body, - is_static: false, // メソッドã¯é€šå¸¸é™çš„ã§ãªã„ - span: Span::unknown(), - }; - - methods.insert(field_or_method, method); - } - } else { - // フィールド定義 - fields.push(field_or_method); - } - self.skip_newlines(); // フィールド/ãƒ¡ã‚½ãƒƒãƒ‰å®šç¾©å¾Œã®æ”¹è¡Œã‚’スキップ - } else { - // 予期ã—ãªã„トークンã®å ´åˆã€è©³ç´°ãªã‚¨ãƒ©ãƒ¼æƒ…報を出力ã—ã¦ã‚¹ã‚­ãƒƒãƒ— - let line = self.current_token().line; - eprintln!("Debug: Unexpected token {:?} at line {}", self.current_token().token_type, line); - self.advance(); // トークンをスキップã—ã¦ç¶šè¡Œ - } - } - - self.consume(TokenType::RBRACE)?; - - Ok(ASTNode::BoxDeclaration { - name, - fields, - methods, - constructors, - init_fields, - is_interface: false, - extends, - implements, - type_parameters, - is_static: false, - static_init: None, - span: Span::unknown(), - }) - } - - /// インターフェースBox宣言をパース: interface box Name { method1() method2() } - fn parse_interface_box_declaration(&mut self) -> Result { - self.consume(TokenType::INTERFACE)?; - self.consume(TokenType::BOX)?; - - let name = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "identifier".to_string(), - line, - }); - }; - - self.consume(TokenType::LBRACE)?; - self.skip_newlines(); // ãƒ–ãƒ¬ãƒ¼ã‚¹å¾Œã®æ”¹è¡Œã‚’スキップ - - let mut methods = HashMap::new(); - - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); // ãƒ«ãƒ¼ãƒ—é–‹å§‹æ™‚ã«æ”¹è¡Œã‚’スキップ - if let TokenType::IDENTIFIER(method_name) = &self.current_token().token_type { - let method_name = method_name.clone(); - self.advance(); - - // インターフェースメソッドã¯ã‚·ã‚°ãƒãƒãƒ£ã®ã¿ - if self.match_token(&TokenType::LPAREN) { - self.advance(); // consume '(' - - let mut params = Vec::new(); - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - } - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - - // インターフェースメソッドã¯å®Ÿè£…ãªã—(空ã®body) - let method_decl = ASTNode::FunctionDeclaration { - name: method_name.clone(), - params, - body: vec![], // 空ã®å®Ÿè£… - is_static: false, // インターフェースメソッドã¯é€šå¸¸é™çš„ã§ãªã„ - span: Span::unknown(), - }; - - methods.insert(method_name, method_decl); - - // ãƒ¡ã‚½ãƒƒãƒ‰å®£è¨€å¾Œã®æ”¹è¡Œã‚’スキップ - self.skip_newlines(); - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "(".to_string(), - line, - }); - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "method name".to_string(), - line, - }); - } - } - - self.consume(TokenType::RBRACE)?; - - Ok(ASTNode::BoxDeclaration { - name, - fields: vec![], // インターフェースã¯ãƒ•ィールドãªã— - methods, - constructors: HashMap::new(), // インターフェースã«ã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ãªã— - init_fields: vec![], // インターフェースã«initブロックãªã— - is_interface: true, // インターフェースフラグ - extends: None, - implements: vec![], - type_parameters: Vec::new(), // 🔥 インターフェースã§ã¯ã‚¸ã‚§ãƒãƒªã‚¯ã‚¹æœªå¯¾å¿œ - is_static: false, // インターフェースã¯éžstatic - static_init: None, // インターフェースã«static initãªã— - span: Span::unknown(), - }) - } - - /// グローãƒãƒ«å¤‰æ•°ã‚’パース: global name = value - fn parse_global_var(&mut self) -> Result { - self.consume(TokenType::GLOBAL)?; - - let name = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "identifier".to_string(), - line, - }); - }; - - self.consume(TokenType::ASSIGN)?; - let value = Box::new(self.parse_expression()?); - - Ok(ASTNode::GlobalVar { name, value, span: Span::unknown() }) - } - - /// 🌟 if/else if/else文をパース - 2段階アプローãƒã§å®Œå…¨å®‰å®šåŒ–ï¼ - /// if condition { ... } else if condition2 { ... } else { ... } - fn parse_if(&mut self) -> Result { - self.consume(TokenType::IF)?; - - // 🎯 第1段階:構造èªè­˜ - if/else if/elseå…¨ä½“ã®æ§‹é€ ã‚’æŠŠæ¡ - let if_structure = self.extract_if_structure()?; - - // 🎯 第2段階:内容パース - 分離ã•れãŸè¦ç´ ã‚’個別ã«è§£æž - self.parse_if_content(if_structure) - } - - /// loop文をパース: loop(condition) { body } ã®ã¿ - /// 🔥 LOOP 2段階パーサー - セルフホスティング実ç¾ã¸ã®é‡è¦ã‚¹ãƒ†ãƒƒãƒ—ï¼ - fn parse_loop(&mut self) -> Result { - self.consume(TokenType::LOOP)?; - - // 🎯 第1段階:構造èªè­˜ - loop(condition) { ... }ã®æ§‹é€ ã‚’æŠŠæ¡ - let loop_structure = self.extract_loop_structure()?; - - // 🚀 第2段階:内容パース - 独立ã—ãŸç’°å¢ƒã§å„部分をパース - self.parse_loop_content(loop_structure) - } - - /// 第1段階:loopæ§‹é€ ã®æŠ½å‡ºï¼ˆã‚¹ã‚¿ãƒƒã‚¯ãƒ™ãƒ¼ã‚¹ï¼‰ - fn extract_loop_structure(&mut self) -> Result { - // condition部分を抽出 - self.consume(TokenType::LPAREN)?; - let condition_tokens = self.extract_condition_tokens()?; - self.consume(TokenType::RPAREN)?; - - // body部分を抽出 - let body_tokens = self.extract_block_tokens()?; - - Ok(LoopStructure { - condition_tokens, - body_tokens, - }) - } - - /// condition部分ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’抽出 - fn extract_condition_tokens(&mut self) -> Result, ParseError> { - let mut tokens = Vec::new(); - let mut paren_stack = 0; - - while !self.is_at_end() { - match &self.current_token().token_type { - TokenType::LPAREN => { - paren_stack += 1; - tokens.push(self.current_token().clone()); - self.advance(); - } - TokenType::RPAREN => { - if paren_stack == 0 { - break; // loopæ¡ä»¶ã®çµ‚了 - } - paren_stack -= 1; - tokens.push(self.current_token().clone()); - self.advance(); - } - _ => { - tokens.push(self.current_token().clone()); - self.advance(); - } - } - } - - Ok(tokens) - } - - /// 第2段階:独立環境ã§ã®ãƒ‘ース - fn parse_loop_content(&mut self, structure: LoopStructure) -> Result { - // condition部分を独立パース - let condition = self.parse_token_sequence(structure.condition_tokens)?; - - // body部分を独立パース - let body = self.parse_token_block(structure.body_tokens)?; - - Ok(ASTNode::Loop { - condition: Box::new(condition), - body, - span: Span::unknown() - }) - } - - /// break文をパース - fn parse_break(&mut self) -> Result { - self.consume(TokenType::BREAK)?; - Ok(ASTNode::Break { span: Span::unknown() }) - } - - /// return文をパース: return [value] - fn parse_return(&mut self) -> Result { - self.consume(TokenType::RETURN)?; - self.skip_newlines(); // returnå¾Œã®æ”¹è¡Œã‚’スキップ - - let value = if self.match_token(&TokenType::LBRACE) || - self.match_token(&TokenType::RBRACE) || - self.match_token(&TokenType::NEWLINE) || - self.is_at_end() { - None - } else { - Some(Box::new(self.parse_expression()?)) - }; - - Ok(ASTNode::Return { value, span: Span::unknown() }) - } - - /// print文をパース: print(expression) - fn parse_print(&mut self) -> Result { - self.consume(TokenType::PRINT)?; - self.skip_newlines(); // printå¾Œã®æ”¹è¡Œã‚’スキップ - self.consume(TokenType::LPAREN)?; - let expression = Box::new(self.parse_expression()?); - self.consume(TokenType::RPAREN)?; - - Ok(ASTNode::Print { expression, span: Span::unknown() }) - } - - /// nowait文をパース: nowait variable = expression - fn parse_nowait(&mut self) -> Result { - self.consume(TokenType::NOWAIT)?; - self.skip_newlines(); // nowaitå¾Œã®æ”¹è¡Œã‚’スキップ - - // 変数åã‚’å–å¾— - let variable = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "variable name".to_string(), - line, - }); - }; - - self.consume(TokenType::ASSIGN)?; - let expression = Box::new(self.parse_expression()?); - - Ok(ASTNode::Nowait { variable, expression, span: Span::unknown() }) - } - - /// function宣言をパース: function name(params) { body } - fn parse_function_declaration(&mut self) -> Result { - self.consume(TokenType::FUNCTION)?; - - // 関数åã‚’å–å¾— - let name = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "function name".to_string(), - line, - }); - }; - - // パラメータリストをパース - self.consume(TokenType::LPAREN)?; - let mut params = Vec::new(); - - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } else if !self.match_token(&TokenType::RPAREN) { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "parameter name".to_string(), - line, - }); - } - } - - self.consume(TokenType::RPAREN)?; - - // 関数本体をパース - self.consume(TokenType::LBRACE)?; - self.skip_newlines(); - - let mut body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - if !self.match_token(&TokenType::RBRACE) { - body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - - Ok(ASTNode::FunctionDeclaration { - name, - params, - body, - is_static: false, // 通常ã®é–¢æ•°ã¯é™çš„ã§ãªã„ - span: Span::unknown(), - }) - } - - /// é™çš„宣言をパース - 🔥 static function / static box 記法 - fn parse_static_declaration(&mut self) -> Result { - self.consume(TokenType::STATIC)?; - - // 次ã®ãƒˆãƒ¼ã‚¯ãƒ³ã§åˆ†å²: function ã‹ box ã‹ - match &self.current_token().token_type { - TokenType::FUNCTION => self.parse_static_function(), - TokenType::BOX => self.parse_static_box(), - _ => { - let line = self.current_token().line; - Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "function or box after static".to_string(), - line, - }) - } - } - } - - /// é™çš„関数宣言をパース - static function Name() { ... } - fn parse_static_function(&mut self) -> Result { - self.consume(TokenType::FUNCTION)?; - - // 関数åã‚’å–得(Boxå.関数åã®å½¢å¼ã‚’サãƒãƒ¼ãƒˆï¼‰ - let name = if let TokenType::IDENTIFIER(first_part) = &self.current_token().token_type { - let mut full_name = first_part.clone(); - self.advance(); - - // ドット記法をãƒã‚§ãƒƒã‚¯ï¼ˆä¾‹ï¼šMath.min) - if self.match_token(&TokenType::DOT) { - self.advance(); // DOTを消費 - - if let TokenType::IDENTIFIER(method_name) = &self.current_token().token_type { - full_name = format!("{}.{}", full_name, method_name); - self.advance(); - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "method name after dot".to_string(), - line, - }); - } - } - - full_name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "static function name".to_string(), - line, - }); - }; - - // パラメータリストをパース - self.consume(TokenType::LPAREN)?; - let mut params = Vec::new(); - - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } else if !self.match_token(&TokenType::RPAREN) { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "parameter name".to_string(), - line, - }); - } - } - - self.consume(TokenType::RPAREN)?; - - // 関数本体をパース - self.consume(TokenType::LBRACE)?; - self.skip_newlines(); // ブレースã®å¾Œã®æ”¹è¡Œã‚’スキップ - - let mut body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); // ãƒ«ãƒ¼ãƒ—é–‹å§‹æ™‚ã®æ”¹è¡Œã‚’スキップ - if !self.match_token(&TokenType::RBRACE) { - body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - - Ok(ASTNode::FunctionDeclaration { - name, - params, - body, - is_static: true, // 🔥 é™çš„関数フラグを設定 - span: Span::unknown(), - }) - } - - /// é™çš„Box宣言をパース - static box Name { ... } - fn parse_static_box(&mut self) -> Result { - self.consume(TokenType::BOX)?; - - let name = if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - let name = name.clone(); - self.advance(); - name - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "identifier".to_string(), - line, - }); - }; - - // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹ãƒ‘ラメータã®ãƒ‘ース () - let type_parameters = if self.match_token(&TokenType::LESS) { - self.advance(); // consume '<' - let mut params = Vec::new(); - - loop { - if let TokenType::IDENTIFIER(param_name) = &self.current_token().token_type { - params.push(param_name.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); // consume ',' - } else { - break; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "type parameter name".to_string(), - line, - }); - } - } - - self.consume(TokenType::GREATER)?; // consume '>' - params - } else { - Vec::new() - }; - - // fromå¥ã®ãƒ‘ース(継承)- static boxã§ã‚‚継承å¯èƒ½ - let extends = if self.match_token(&TokenType::FROM) { - self.advance(); // consume 'from' - - if let TokenType::IDENTIFIER(parent_name) = &self.current_token().token_type { - let parent_name = parent_name.clone(); - self.advance(); - Some(parent_name) - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "parent class name".to_string(), - line, - }); - } - } else { - None - }; - - // interfaceå¥ã®ãƒ‘ース(インターフェース実装) - let implements = if self.match_token(&TokenType::INTERFACE) { - self.advance(); // consume 'interface' - - let mut interface_list = Vec::new(); - - loop { - if let TokenType::IDENTIFIER(interface_name) = &self.current_token().token_type { - interface_list.push(interface_name.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); // consume ',' - } else { - break; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "interface name".to_string(), - line, - }); - } - } - - interface_list - } else { - vec![] - }; - - self.consume(TokenType::LBRACE)?; - self.skip_newlines(); // ãƒ–ãƒ¬ãƒ¼ã‚¹å¾Œã®æ”¹è¡Œã‚’スキップ - - let mut fields = Vec::new(); - let mut methods = HashMap::new(); - let constructors = HashMap::new(); - let mut init_fields = Vec::new(); - let mut static_init = None; - - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); // ãƒ«ãƒ¼ãƒ—é–‹å§‹æ™‚ã«æ”¹è¡Œã‚’スキップ - - // RBRACEã«åˆ°é”ã—ã¦ã„れã°ãƒ«ãƒ¼ãƒ—を抜ã‘ã‚‹ - if self.match_token(&TokenType::RBRACE) { - break; - } - - // 🔥 static { } ブロックã®å‡¦ç† - if self.match_token(&TokenType::STATIC) { - self.advance(); // consume 'static' - self.consume(TokenType::LBRACE)?; - - let mut static_body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - if !self.match_token(&TokenType::RBRACE) { - static_body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - static_init = Some(static_body); - continue; - } - - // initブロックã®å‡¦ç† - if self.match_token(&TokenType::INIT) { - self.advance(); // consume 'init' - self.consume(TokenType::LBRACE)?; - - // initブロック内ã®ãƒ•ィールド定義を読ã¿è¾¼ã¿ - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - - if self.match_token(&TokenType::RBRACE) { - break; - } - - if let TokenType::IDENTIFIER(field_name) = &self.current_token().token_type { - init_fields.push(field_name.clone()); - self.advance(); - - // カンマãŒã‚れã°ã‚¹ã‚­ãƒƒãƒ— - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } else { - // 䏿­£ãªãƒˆãƒ¼ã‚¯ãƒ³ãŒã‚ã‚‹å ´åˆã¯ã‚¨ãƒ©ãƒ¼ - return Err(ParseError::UnexpectedToken { - expected: "field name".to_string(), - found: self.current_token().token_type.clone(), - line: self.current_token().line, - }); - } - } - - self.consume(TokenType::RBRACE)?; - continue; - } - - if let TokenType::IDENTIFIER(field_or_method) = &self.current_token().token_type { - let field_or_method = field_or_method.clone(); - self.advance(); - - // メソッド定義ã‹ï¼Ÿ - if self.match_token(&TokenType::LPAREN) { - // メソッド定義 - self.advance(); // consume '(' - - let mut params = Vec::new(); - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - if let TokenType::IDENTIFIER(param) = &self.current_token().token_type { - params.push(param.clone()); - self.advance(); - } - - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - self.consume(TokenType::LBRACE)?; - - let mut body = Vec::new(); - while !self.match_token(&TokenType::RBRACE) && !self.is_at_end() { - self.skip_newlines(); - if !self.match_token(&TokenType::RBRACE) { - body.push(self.parse_statement()?); - } - } - - self.consume(TokenType::RBRACE)?; - - let method = ASTNode::FunctionDeclaration { - name: field_or_method.clone(), - params, - body, - is_static: false, // static box内ã®ãƒ¡ã‚½ãƒƒãƒ‰ã¯é€šå¸¸ãƒ¡ã‚½ãƒƒãƒ‰ - span: Span::unknown(), - }; - - methods.insert(field_or_method, method); - } else { - // フィールド定義 - fields.push(field_or_method); - } - } else { - return Err(ParseError::UnexpectedToken { - expected: "method or field name".to_string(), - found: self.current_token().token_type.clone(), - line: self.current_token().line, - }); - } - } - - self.consume(TokenType::RBRACE)?; - - // 🔥 StaticåˆæœŸåŒ–ブロックã‹ã‚‰ä¾å­˜é–¢ä¿‚を抽出 - if let Some(ref init_stmts) = static_init { - let dependencies = self.extract_dependencies_from_statements(init_stmts); - self.static_box_dependencies.insert(name.clone(), dependencies); - } else { - self.static_box_dependencies.insert(name.clone(), std::collections::HashSet::new()); - } - - Ok(ASTNode::BoxDeclaration { - name, - fields, - methods, - constructors, - init_fields, - is_interface: false, - extends, - implements, - type_parameters, - is_static: true, // 🔥 static boxフラグを設定 - static_init, // 🔥 staticåˆæœŸåŒ–ブロック - span: Span::unknown(), - }) - } - - /// 代入文ã¾ãŸã¯é–¢æ•°å‘¼ã³å‡ºã—をパース - fn parse_assignment_or_function_call(&mut self) -> Result { - // ã¾ãšå·¦è¾ºã‚’å¼ã¨ã—ã¦ãƒ‘ース - let expr = self.parse_expression()?; - - // 次ã®ãƒˆãƒ¼ã‚¯ãƒ³ãŒ = ãªã‚‰ä»£å…¥æ–‡ - if self.match_token(&TokenType::ASSIGN) { - self.advance(); // consume '=' - let value = Box::new(self.parse_expression()?); - - // 左辺ãŒä»£å…¥å¯èƒ½ãªå½¢å¼ã‹ãƒã‚§ãƒƒã‚¯ - match &expr { - ASTNode::Variable { .. } | - ASTNode::FieldAccess { .. } => { - Ok(ASTNode::Assignment { - target: Box::new(expr), - value, - span: Span::unknown(), - }) - } - _ => { - let line = self.current_token().line; - Err(ParseError::InvalidStatement { line }) - } - } - } else { - // 代入文ã§ãªã‘れã°å¼æ–‡ã¨ã—ã¦è¿”ã™ - Ok(expr) - } - } - - - - /// å¼ã‚’パース (演算å­å„ªå…ˆé †ä½ã‚り) - fn parse_expression(&mut self) -> Result { - self.parse_or() - } - - /// OR演算å­ã‚’パース: || - fn parse_or(&mut self) -> Result { - let mut expr = self.parse_and()?; - - while self.match_token(&TokenType::OR) { - let operator = BinaryOperator::Or; - self.advance(); - let right = self.parse_and()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - - Ok(expr) - } - - /// AND演算å­ã‚’パース: && - fn parse_and(&mut self) -> Result { - let mut expr = self.parse_equality()?; - - while self.match_token(&TokenType::AND) { - let operator = BinaryOperator::And; - self.advance(); - let right = self.parse_equality()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - - Ok(expr) - } - - /// 等値演算å­ã‚’パース: == != - fn parse_equality(&mut self) -> Result { - let mut expr = self.parse_comparison()?; - - while self.match_token(&TokenType::EQUALS) || self.match_token(&TokenType::NotEquals) { - let operator = match &self.current_token().token_type { - TokenType::EQUALS => BinaryOperator::Equal, - TokenType::NotEquals => BinaryOperator::NotEqual, - _ => unreachable!(), - }; - self.advance(); - let right = self.parse_comparison()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - - Ok(expr) - } - - /// 比較演算å­ã‚’パース: < <= > >= - fn parse_comparison(&mut self) -> Result { - let mut expr = self.parse_term()?; - - while self.match_token(&TokenType::LESS) || - self.match_token(&TokenType::LessEquals) || - self.match_token(&TokenType::GREATER) || - self.match_token(&TokenType::GreaterEquals) { - let operator = match &self.current_token().token_type { - TokenType::LESS => BinaryOperator::Less, - TokenType::LessEquals => BinaryOperator::LessEqual, - TokenType::GREATER => BinaryOperator::Greater, - TokenType::GreaterEquals => BinaryOperator::GreaterEqual, - _ => unreachable!(), - }; - self.advance(); - let right = self.parse_term()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - - Ok(expr) - } - - /// 項をパース: + - >> - fn parse_term(&mut self) -> Result { - let mut expr = self.parse_factor()?; - - while self.match_token(&TokenType::PLUS) || self.match_token(&TokenType::MINUS) || self.match_token(&TokenType::ARROW) { - if self.match_token(&TokenType::ARROW) { - // >> Arrowæ¼”ç®—å­ - self.advance(); - let right = self.parse_factor()?; - expr = ASTNode::Arrow { - sender: Box::new(expr), - receiver: Box::new(right), - span: Span::unknown(), - }; - } else { - let operator = match &self.current_token().token_type { - TokenType::PLUS => BinaryOperator::Add, - TokenType::MINUS => BinaryOperator::Subtract, - _ => unreachable!(), - }; - self.advance(); - let right = self.parse_factor()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - } - - Ok(expr) - } - - /// å› å­ã‚’パース: * / - fn parse_factor(&mut self) -> Result { - let mut expr = self.parse_unary()?; - - while self.match_token(&TokenType::MULTIPLY) || self.match_token(&TokenType::DIVIDE) { - let operator = match &self.current_token().token_type { - TokenType::MULTIPLY => BinaryOperator::Multiply, - TokenType::DIVIDE => BinaryOperator::Divide, - _ => unreachable!(), - }; - self.advance(); - let right = self.parse_unary()?; - expr = ASTNode::BinaryOp { - operator, - left: Box::new(expr), - right: Box::new(right), - span: Span::unknown(), - }; - } - - Ok(expr) - } - - /// å˜é …演算å­ã‚’パース - fn parse_unary(&mut self) -> Result { - if self.match_token(&TokenType::MINUS) { - self.advance(); // consume '-' - let operand = self.parse_unary()?; // å†å¸°çš„ã«å˜é …演算をパース - return Ok(ASTNode::UnaryOp { - operator: UnaryOperator::Minus, - operand: Box::new(operand), - span: Span::unknown(), - }); - } - - if self.match_token(&TokenType::NOT) { - self.advance(); // consume 'not' - let operand = self.parse_unary()?; // å†å¸°çš„ã«å˜é …演算をパース - return Ok(ASTNode::UnaryOp { - operator: UnaryOperator::Not, - operand: Box::new(operand), - span: Span::unknown(), - }); - } - - if self.match_token(&TokenType::AWAIT) { - self.advance(); // consume 'await' - let expression = self.parse_unary()?; // å†å¸°çš„ã«ãƒ‘ース - return Ok(ASTNode::AwaitExpression { - expression: Box::new(expression), - span: Span::unknown(), - }); - } - - self.parse_call() - } - - /// 関数・メソッド呼ã³å‡ºã—をパース - fn parse_call(&mut self) -> Result { - let mut expr = self.parse_primary()?; - - loop { - if self.match_token(&TokenType::DOT) { - self.advance(); // consume '.' - - if let TokenType::IDENTIFIER(method_name) = &self.current_token().token_type { - let method_name = method_name.clone(); - self.advance(); - - if self.match_token(&TokenType::LPAREN) { - // メソッド呼ã³å‡ºã—: obj.method(args) - self.advance(); // consume '(' - let mut arguments = Vec::new(); - - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - arguments.push(self.parse_expression()?); - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - - expr = ASTNode::MethodCall { - object: Box::new(expr), - method: method_name, - arguments, - span: Span::unknown(), - }; - } else { - // フィールドアクセス: obj.field - expr = ASTNode::FieldAccess { - object: Box::new(expr), - field: method_name, - span: Span::unknown(), - }; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "identifier".to_string(), - line, - }); - } - } else if self.match_token(&TokenType::LPAREN) { - // 関数呼ã³å‡ºã—: function(args) - if let ASTNode::Variable { name, .. } = expr { - self.advance(); // consume '(' - let mut arguments = Vec::new(); - - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - arguments.push(self.parse_expression()?); - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - - expr = ASTNode::FunctionCall { name, arguments, span: Span::unknown() }; - } else { - break; - } - } else { - break; - } - } - - Ok(expr) - } - - /// 基本å¼ã‚’パース: リテラルã€å¤‰æ•°ã€æ‹¬å¼§ã€thisã€new - fn parse_primary(&mut self) -> Result { - match &self.current_token().token_type { - TokenType::STRING(s) => { - let value = s.clone(); - self.advance(); - Ok(ASTNode::Literal { - value: LiteralValue::String(value), - span: Span::unknown(), - }) - } - - TokenType::NUMBER(n) => { - let value = *n; - self.advance(); - Ok(ASTNode::Literal { - value: LiteralValue::Integer(value), - span: Span::unknown(), - }) - } - - TokenType::FLOAT(f) => { - let value = *f; - self.advance(); - Ok(ASTNode::Literal { - value: LiteralValue::Float(value), - span: Span::unknown(), - }) - } - - TokenType::TRUE => { - self.advance(); - Ok(ASTNode::Literal { - value: LiteralValue::Bool(true), - span: Span::unknown(), - }) - } - - TokenType::FALSE => { - self.advance(); - Ok(ASTNode::Literal { - value: LiteralValue::Bool(false), - span: Span::unknown(), - }) - } - - TokenType::THIS => { - self.advance(); - Ok(ASTNode::This { span: Span::unknown() }) - } - - TokenType::ME => { - self.advance(); - Ok(ASTNode::Me { span: Span::unknown() }) - } - - TokenType::NEW => { - self.advance(); - - if let TokenType::IDENTIFIER(class_name) = &self.current_token().token_type { - let class_name = class_name.clone(); - self.advance(); - - // 🔥 ジェãƒãƒªã‚¯ã‚¹åž‹å¼•æ•°ã®ãƒ‘ース () - let type_arguments = if self.match_token(&TokenType::LESS) { - self.advance(); // consume '<' - let mut args = Vec::new(); - - loop { - if let TokenType::IDENTIFIER(type_name) = &self.current_token().token_type { - args.push(type_name.clone()); - self.advance(); - - if self.match_token(&TokenType::COMMA) { - self.advance(); // consume ',' - } else { - break; - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "type argument".to_string(), - line, - }); - } - } - - self.consume(TokenType::GREATER)?; // consume '>' - args - } else { - Vec::new() - }; - - self.consume(TokenType::LPAREN)?; - let mut arguments = Vec::new(); - - while !self.match_token(&TokenType::RPAREN) && !self.is_at_end() { - arguments.push(self.parse_expression()?); - if self.match_token(&TokenType::COMMA) { - self.advance(); - } - } - - self.consume(TokenType::RPAREN)?; - - Ok(ASTNode::New { - class: class_name, - arguments, - type_arguments, - span: Span::unknown(), - }) - } else { - let line = self.current_token().line; - Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "class name".to_string(), - line, - }) - } - } - - TokenType::IDENTIFIER(name) => { - let name = name.clone(); - self.advance(); - Ok(ASTNode::Variable { name, span: Span::unknown() }) - } - - TokenType::LPAREN => { - self.advance(); // consume '(' - let expr = self.parse_expression()?; - self.consume(TokenType::RPAREN)?; - Ok(expr) - } - - _ => { - let line = self.current_token().line; - Err(ParseError::InvalidExpression { line }) - } - } - } - - // ===== ユーティリティメソッド ===== - - /// ç¾åœ¨ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’å–å¾— - fn current_token(&self) -> &Token { - self.tokens.get(self.current).unwrap_or(&Token { - token_type: TokenType::EOF, - line: 0, - column: 0, - }) - } - - /// ä½ç½®ã‚’1ã¤é€²ã‚ã‚‹ - fn advance(&mut self) { - if !self.is_at_end() { - self.current += 1; - } - } - - /// NEWLINEトークンをスキップ - fn skip_newlines(&mut self) { - while matches!(self.current_token().token_type, TokenType::NEWLINE) && !self.is_at_end() { - self.advance(); - } - } - - /// 指定ã•れãŸãƒˆãƒ¼ã‚¯ãƒ³ã‚¿ã‚¤ãƒ—を消費 (期待通りã§ãªã‘れã°ã‚¨ãƒ©ãƒ¼) - fn consume(&mut self, expected: TokenType) -> Result { - if std::mem::discriminant(&self.current_token().token_type) == - std::mem::discriminant(&expected) { - let token = self.current_token().clone(); - self.advance(); - Ok(token) - } else { - let line = self.current_token().line; - Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: format!("{:?}", expected), - line, - }) - } - } - - /// ç¾åœ¨ã®ãƒˆãƒ¼ã‚¯ãƒ³ãŒæŒ‡å®šã•れãŸã‚¿ã‚¤ãƒ—ã‹ãƒã‚§ãƒƒã‚¯ - fn match_token(&self, token_type: &TokenType) -> bool { - std::mem::discriminant(&self.current_token().token_type) == - std::mem::discriminant(token_type) - } - - /// 終端ã«é”ã—ãŸã‹ãƒã‚§ãƒƒã‚¯ - fn is_at_end(&self) -> bool { - self.current >= self.tokens.len() || - matches!(self.current_token().token_type, TokenType::EOF) - } - - /// include文をパース: include "filename.nyash" - fn parse_include(&mut self) -> Result { - self.consume(TokenType::INCLUDE)?; - - // ファイルå(文字列リテラル)をå–å¾— - let filename = if let TokenType::STRING(filename) = &self.current_token().token_type { - let filename = filename.clone(); - self.advance(); - filename - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "string filename".to_string(), - line, - }); - }; - - Ok(ASTNode::Include { filename, span: Span::unknown() }) - } - - /// local変数宣言をパース: local x, y, z - fn parse_local(&mut self) -> Result { - self.consume(TokenType::LOCAL)?; - - let mut variables = Vec::new(); - let mut initial_values = Vec::new(); - - // 最åˆã®å¤‰æ•°åã‚’å–å¾— - if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - variables.push(name.clone()); - self.advance(); - - // åˆæœŸåŒ–ãƒã‚§ãƒƒã‚¯: local x = value - if self.match_token(&TokenType::ASSIGN) { - self.advance(); // consume '=' - let init_expr = self.parse_expression()?; - initial_values.push(Some(Box::new(init_expr))); - } else { - initial_values.push(None); - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "variable name".to_string(), - line, - }); - } - - // カンマ区切りã§è¤‡æ•°ã®å¤‰æ•°ã‚’読ã¿è¾¼ã‚€ - while self.current_token().token_type == TokenType::COMMA { - self.advance(); // カンマをスキップ - - if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - variables.push(name.clone()); - self.advance(); - - // åˆæœŸåŒ–ãƒã‚§ãƒƒã‚¯: local x, y = value - if self.match_token(&TokenType::ASSIGN) { - self.advance(); // consume '=' - let init_expr = self.parse_expression()?; - initial_values.push(Some(Box::new(init_expr))); - } else { - initial_values.push(None); - } - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "variable name".to_string(), - line, - }); - } - } - - Ok(ASTNode::Local { - variables, - initial_values, // 🚀 åˆæœŸåŒ–値をサãƒãƒ¼ãƒˆï¼ˆSome/None混在) - span: Span::unknown() - }) - } - - /// outbox変数宣言をパース: outbox x, y, z (static関数内専用) - fn parse_outbox(&mut self) -> Result { - self.consume(TokenType::OUTBOX)?; - - let mut variables = Vec::new(); - - // 最åˆã®å¤‰æ•°åã‚’å–å¾— - if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - variables.push(name.clone()); - self.advance(); - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "variable name".to_string(), - line, - }); - } - - // カンマ区切りã§è¤‡æ•°ã®å¤‰æ•°ã‚’読ã¿è¾¼ã‚€ - while self.current_token().token_type == TokenType::COMMA { - self.advance(); // カンマをスキップ - - if let TokenType::IDENTIFIER(name) = &self.current_token().token_type { - variables.push(name.clone()); - self.advance(); - } else { - let line = self.current_token().line; - return Err(ParseError::UnexpectedToken { - found: self.current_token().token_type.clone(), - expected: "variable name".to_string(), - line, - }); - } - } - - let num_vars = variables.len(); - Ok(ASTNode::Outbox { - variables, - initial_values: vec![None; num_vars], // 🚀 åˆæœŸåŒ–値ãªã—(従æ¥ã®å‹•作) - span: Span::unknown() - }) - } - - /// try/catch/finally文をパース - 2段階アプローム- fn parse_try_catch(&mut self) -> Result { - self.consume(TokenType::TRY)?; - - // 第1段階: 構造èªè­˜ - try/catch/finallyå…¨ä½“ã®æ‹¬å¼§æ§‹é€ ã‚’æŠŠæ¡ - let try_block_tokens = self.extract_block_tokens()?; - - let mut catch_blocks = Vec::new(); - let mut finally_block_tokens = None; - - // catchç¯€ã®æ§‹é€ èªè­˜ - while self.current_token().token_type == TokenType::CATCH { - self.advance(); // CATCH消費 - - // catch (Type var) ã¾ãŸã¯ catch (var) ã¾ãŸã¯ catch ã®è§£æž - let mut exception_type = None; - let mut variable_name = None; - - if self.current_token().token_type == TokenType::LPAREN { - self.advance(); // LPAREN消費 - - if let TokenType::IDENTIFIER(first_id) = &self.current_token().token_type { - let first_name = first_id.clone(); - self.advance(); - - if let TokenType::IDENTIFIER(second_id) = &self.current_token().token_type { - // catch (Type var) å½¢å¼ - exception_type = Some(first_name); - variable_name = Some(second_id.clone()); - self.advance(); - } else { - // catch (var) å½¢å¼ - variable_name = Some(first_name); - } - } - - self.consume(TokenType::RPAREN)?; - } - - let catch_body_tokens = self.extract_block_tokens()?; - catch_blocks.push((exception_type, variable_name, catch_body_tokens)); - } - - // finallyç¯€ã®æ§‹é€ èªè­˜ - if self.current_token().token_type == TokenType::FINALLY { - self.advance(); // FINALLY消費 - finally_block_tokens = Some(self.extract_block_tokens()?); - } - - // 第2段階: 内容パース - å„ブロックを独立ã—ã¦ãƒ‘ース - let try_body = self.parse_token_block(try_block_tokens)?; - - let mut catch_clauses = Vec::new(); - for (exception_type, variable_name, tokens) in catch_blocks { - let body = self.parse_token_block(tokens)?; - catch_clauses.push(CatchClause { - exception_type, - variable_name, - body, - span: Span::unknown(), - }); - } - - let finally_body = if let Some(tokens) = finally_block_tokens { - Some(self.parse_token_block(tokens)?) - } else { - None - }; - - // tryæ–‡ã«ã¯catchã‹finallyã®ã©ã¡ã‚‰ã‹ãŒå¿…è¦ - if catch_clauses.is_empty() && finally_body.is_none() { - return Err(ParseError::UnexpectedToken { - found: TokenType::TRY, - expected: "catch or finally clause".to_string(), - line: self.current_token().line, - }); - } - - Ok(ASTNode::TryCatch { - try_body, - catch_clauses, - finally_body, - span: Span::unknown(), - }) - } - - - /// throw文をパース: throw expression - fn parse_throw(&mut self) -> Result { - self.consume(TokenType::THROW)?; - - // throwå¼ã‚’評価 - let expression = Box::new(self.parse_expression()?); - - Ok(ASTNode::Throw { expression, span: Span::unknown() }) - } - - - - /// ブロックトークン抽出 - ã‚¹ã‚¿ãƒƒã‚¯ãƒ™ãƒ¼ã‚¹ã§æ‹¬å¼§ã®å¯¾å¿œã‚’正確ã«è¿½è·¡ - fn extract_block_tokens(&mut self) -> Result, ParseError> { - self.consume(TokenType::LBRACE)?; - - let mut tokens = Vec::new(); - let mut brace_stack = 1; // æ—¢ã«é–‹ã括弧1ã¤æ¶ˆè²»æ¸ˆã¿ - - while !self.is_at_end() && brace_stack > 0 { - match self.current_token().token_type { - TokenType::LBRACE => { - brace_stack += 1; - tokens.push(self.current_token().clone()); - } - TokenType::RBRACE => { - brace_stack -= 1; - if brace_stack > 0 { - // 内部ã®é–‰ã˜æ‹¬å¼§ã®ã¿è¿½åŠ  - tokens.push(self.current_token().clone()); - } - // brace_stack == 0 ãªã‚‰å¤–å´ã®æ‹¬å¼§ãªã®ã§è¿½åŠ ã›ãšãƒ«ãƒ¼ãƒ—終了 - } - _ => { - tokens.push(self.current_token().clone()); - } - } - self.advance(); - } - - if brace_stack != 0 { - return Err(ParseError::UnexpectedEOF); - } - - Ok(tokens) - } - - /// トークンブロックをパース - 独立ã—ãŸãƒ‘ーサーコンテキストã§å®Ÿè¡Œ - fn parse_token_block(&mut self, tokens: Vec) -> Result, ParseError> { - if tokens.is_empty() { - return Ok(Vec::new()); - } - - // ç¾åœ¨ã®ä½ç½®ã‚’ä¿å­˜ - let saved_position = self.current; - let saved_tokens = self.tokens.clone(); - - // æ–°ã—ã„トークン列ã§ãƒ‘ーサーを一時的ã«åˆæœŸåŒ– - self.tokens = tokens; - self.current = 0; - - let mut statements = Vec::new(); - - while !self.is_at_end() { - // NEWLINE tokenã¯ã‚¹ã‚­ãƒƒãƒ— - if matches!(self.current_token().token_type, TokenType::NEWLINE) { - self.advance(); - continue; - } - - let statement = self.parse_statement()?; - statements.push(statement); - } - - // å…ƒã®çŠ¶æ…‹ã‚’å¾©å…ƒ - self.tokens = saved_tokens; - self.current = saved_position; - - Ok(statements) - } - - /// 🌟 if構造全体を抽出 - if/else if/else ã®è¤‡é›‘ãªæ§‹é€ ã‚’完全èªè­˜ï¼ - fn extract_if_structure(&mut self) -> Result { - // if condition ã®ãƒ‘ース - let condition_tokens = self.extract_if_condition_tokens()?; - let then_body_tokens = self.extract_block_tokens()?; - - let mut else_if_clauses = Vec::new(); - let mut else_body_tokens = None; - - // else if/else節ã®å‡¦ç† - while self.match_token(&TokenType::ELSE) { - self.advance(); // consume 'else' - - // else if ã‹ plain else ã‹ãƒã‚§ãƒƒã‚¯ - if self.match_token(&TokenType::IF) { - self.advance(); // consume 'if' - - let else_if_condition = self.extract_if_condition_tokens()?; - let else_if_body = self.extract_block_tokens()?; - - else_if_clauses.push(ElseIfClause { - condition_tokens: else_if_condition, - body_tokens: else_if_body, - }); - } else { - // plain else - else_body_tokens = Some(self.extract_block_tokens()?); - break; // else ã¯æœ€å¾Œãªã®ã§ãƒ«ãƒ¼ãƒ—終了 - } - } - - Ok(IfStructure { - condition_tokens, - then_body_tokens, - else_if_clauses, - else_body_tokens, - }) - } - - /// ifæ¡ä»¶éƒ¨åˆ†ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’抽出 - fn extract_if_condition_tokens(&mut self) -> Result, ParseError> { - let mut tokens = Vec::new(); - let mut brace_depth = 0; - - while !self.is_at_end() { - match &self.current_token().token_type { - TokenType::LBRACE => { - if brace_depth == 0 { - break; // ifæ¡ä»¶ã®çµ‚了 - } - brace_depth += 1; - tokens.push(self.current_token().clone()); - self.advance(); - } - TokenType::RBRACE => { - brace_depth -= 1; - tokens.push(self.current_token().clone()); - self.advance(); - } - TokenType::NEWLINE => { - // æ”¹è¡Œã¯æ¡ä»¶å†…ã§ã¯ã‚¹ã‚­ãƒƒãƒ— - self.advance(); - } - _ => { - tokens.push(self.current_token().clone()); - self.advance(); - } - } - } - - Ok(tokens) - } - - /// 🌟 if内容をパース - 分離ã•れãŸå„è¦ç´ ã‚’個別処ç†ï¼ - fn parse_if_content(&mut self, structure: IfStructure) -> Result { - // ifæ¡ä»¶ã‚’パース - let condition = self.parse_token_sequence(structure.condition_tokens)?; - - // then_bodyをパース - let then_body = self.parse_token_block(structure.then_body_tokens)?; - - // else if節をパース - let mut processed_else_body = None; - if !structure.else_if_clauses.is_empty() || structure.else_body_tokens.is_some() { - // else if ãŒã‚れã°é€£éŽ–ã‚’ãƒã‚¹ãƒˆã—ãŸifæ–‡ã¨ã—ã¦æ§‹ç¯‰ - let mut current_else: Option> = None; - - // 逆順ã§å‡¦ç†ã—ã¦ãƒã‚¹ãƒˆã‚’æ­£ã—ãæ§‹ç¯‰ - for else_if in structure.else_if_clauses.into_iter().rev() { - let else_if_condition = self.parse_token_sequence(else_if.condition_tokens)?; - let else_if_body = self.parse_token_block(else_if.body_tokens)?; - - let nested_if = ASTNode::If { - condition: Box::new(else_if_condition), - then_body: else_if_body, - else_body: current_else, - span: Span::unknown(), - }; - - current_else = Some(vec![nested_if]); - } - - // 最終的ãªelse bodyã‚’å‡¦ç† - if let Some(else_tokens) = structure.else_body_tokens { - let else_stmts = self.parse_token_block(else_tokens)?; - if current_else.is_some() { - // else if ãŒã‚ã£ãŸå ´åˆã€æœ€æ·±éƒ¨ã«è¿½åŠ  - // è¤‡é›‘ãªæ§‹é€ ãªã®ã§å˜ç´”化: else if を個別ノードã¨ã—ã¦æ‰±ã† - processed_else_body = current_else; - } else { - processed_else_body = Some(else_stmts); - } - } else { - processed_else_body = current_else; - } - } - - Ok(ASTNode::If { - condition: Box::new(condition), - then_body, - else_body: processed_else_body, - span: Span::unknown(), - }) - } - - /// 🔥 トークン列ã‹ã‚‰å˜ä¸€å¼ã‚’パース - loopæ¡ä»¶å°‚用 - fn parse_token_sequence(&mut self, tokens: Vec) -> Result { - if tokens.is_empty() { - return Err(ParseError::UnexpectedEOF); - } - - // ç¾åœ¨ã®ä½ç½®ã‚’ä¿å­˜ - let saved_position = self.current; - let saved_tokens = self.tokens.clone(); - - // æ–°ã—ã„トークン列ã§ãƒ‘ーサーを一時的ã«åˆæœŸåŒ– - self.tokens = tokens; - self.current = 0; - - // å˜ä¸€ã®å¼ã‚’パース - let expression = self.parse_expression()?; - - // å…ƒã®çŠ¶æ…‹ã‚’å¾©å…ƒ - self.tokens = saved_tokens; - self.current = saved_position; - - Ok(expression) - } - - // ===== 🔥 Static Box循環ä¾å­˜æ¤œå‡º ===== - - /// StaticåˆæœŸåŒ–ãƒ–ãƒ­ãƒƒã‚¯å†…ã®æ–‡ã‹ã‚‰ä¾å­˜é–¢ä¿‚を抽出 - fn extract_dependencies_from_statements(&self, statements: &[ASTNode]) -> std::collections::HashSet { - let mut dependencies = std::collections::HashSet::new(); - - for stmt in statements { - self.extract_dependencies_from_ast(stmt, &mut dependencies); - } - - dependencies - } - - /// AST内ã‹ã‚‰é™çš„Boxå‚ç…§ã‚’å†å¸°çš„ã«æ¤œå‡º - fn extract_dependencies_from_ast(&self, node: &ASTNode, dependencies: &mut std::collections::HashSet) { - match node { - ASTNode::FieldAccess { object, .. } => { - // Math.PI ã®ã‚ˆã†ãªå‚照を検出 - if let ASTNode::Variable { name, .. } = object.as_ref() { - dependencies.insert(name.clone()); - } - } - ASTNode::MethodCall { object, .. } => { - // Config.getDebug() ã®ã‚ˆã†ãªå‘¼ã³å‡ºã—を検出 - if let ASTNode::Variable { name, .. } = object.as_ref() { - dependencies.insert(name.clone()); - } - } - ASTNode::Assignment { target, value, .. } => { - self.extract_dependencies_from_ast(target, dependencies); - self.extract_dependencies_from_ast(value, dependencies); - } - ASTNode::BinaryOp { left, right, .. } => { - self.extract_dependencies_from_ast(left, dependencies); - self.extract_dependencies_from_ast(right, dependencies); - } - ASTNode::UnaryOp { operand, .. } => { - self.extract_dependencies_from_ast(operand, dependencies); - } - ASTNode::If { condition, then_body, else_body, .. } => { - self.extract_dependencies_from_ast(condition, dependencies); - for stmt in then_body { - self.extract_dependencies_from_ast(stmt, dependencies); - } - if let Some(else_stmts) = else_body { - for stmt in else_stmts { - self.extract_dependencies_from_ast(stmt, dependencies); - } - } - } - ASTNode::Loop { condition, body, .. } => { - self.extract_dependencies_from_ast(condition, dependencies); - for stmt in body { - self.extract_dependencies_from_ast(stmt, dependencies); - } - } - ASTNode::Return { value, .. } => { - if let Some(val) = value { - self.extract_dependencies_from_ast(val, dependencies); - } - } - ASTNode::Print { expression, .. } => { - self.extract_dependencies_from_ast(expression, dependencies); - } - // ä»–ã®AST nodeタイプも必è¦ã«å¿œã˜ã¦è¿½åŠ  - _ => {} - } - } - - /// 循環ä¾å­˜æ¤œå‡ºï¼ˆæ·±ã•優先探索) - fn check_circular_dependencies(&self) -> Result<(), ParseError> { - let mut visited = std::collections::HashSet::new(); - let mut rec_stack = std::collections::HashSet::new(); - let mut path = Vec::new(); - - for box_name in self.static_box_dependencies.keys() { - if !visited.contains(box_name) { - if self.has_cycle_dfs(box_name, &mut visited, &mut rec_stack, &mut path)? { - return Ok(()); // ã‚¨ãƒ©ãƒ¼ã¯æ—¢ã«has_cycle_dfs内ã§è¿”ã•れる - } - } - } - - Ok(()) - } - - /// DFS ã«ã‚ˆã‚‹å¾ªç’°ä¾å­˜æ¤œå‡º - fn has_cycle_dfs( - &self, - current: &str, - visited: &mut std::collections::HashSet, - rec_stack: &mut std::collections::HashSet, - path: &mut Vec, - ) -> Result { - visited.insert(current.to_string()); - rec_stack.insert(current.to_string()); - path.push(current.to_string()); - - if let Some(dependencies) = self.static_box_dependencies.get(current) { - for dependency in dependencies { - if !visited.contains(dependency) { - if self.has_cycle_dfs(dependency, visited, rec_stack, path)? { - return Ok(true); - } - } else if rec_stack.contains(dependency) { - // 循環ä¾å­˜ã‚’ç™ºè¦‹ï¼ - let cycle_start_pos = path.iter().position(|x| x == dependency).unwrap_or(0); - let cycle_path: Vec = path[cycle_start_pos..].iter().cloned().collect(); - let cycle_display = format!("{} -> {}", cycle_path.join(" -> "), dependency); - - return Err(ParseError::CircularDependency { - cycle: cycle_display - }); - } - } - } - - rec_stack.remove(current); - path.pop(); - Ok(false) - } -} - -// ===== Tests ===== - -#[cfg(test)] -mod tests { - use super::*; - use crate::tokenizer::NyashTokenizer; - - #[test] - fn test_simple_parse() { - let code = r#" - box TestBox { - value - } - "#; - - let result = NyashParser::parse_from_string(code); - assert!(result.is_ok()); - - let ast = result.unwrap(); - match ast { - ASTNode::Program { statements, .. } => { - assert_eq!(statements.len(), 1); - match &statements[0] { - ASTNode::BoxDeclaration { name, fields, methods, .. } => { - assert_eq!(name, "TestBox"); - assert_eq!(fields.len(), 1); - assert_eq!(fields[0], "value"); - assert_eq!(methods.len(), 0); - } - _ => panic!("Expected BoxDeclaration"), - } - } - _ => panic!("Expected Program"), - } - } - - #[test] - fn test_assignment_parse() { - let code = "x = 42"; - - let result = NyashParser::parse_from_string(code); - assert!(result.is_ok()); - - let ast = result.unwrap(); - match ast { - ASTNode::Program { statements, .. } => { - assert_eq!(statements.len(), 1); - match &statements[0] { - ASTNode::Assignment { target, value, .. } => { - match target.as_ref() { - ASTNode::Variable { name, .. } => assert_eq!(name, "x"), - _ => panic!("Expected Variable in target"), - } - match value.as_ref() { - ASTNode::Literal { .. } => {}, - _ => panic!("Expected Literal in value"), - } - } - _ => panic!("Expected Assignment"), - } - } - _ => panic!("Expected Program"), - } - } - - #[test] - fn test_method_call_parse() { - let code = "obj.getValue()"; - - let result = NyashParser::parse_from_string(code); - assert!(result.is_ok()); - - let ast = result.unwrap(); - match ast { - ASTNode::Program { statements, .. } => { - assert_eq!(statements.len(), 1); - match &statements[0] { - ASTNode::MethodCall { object, method, arguments, .. } => { - match object.as_ref() { - ASTNode::Variable { name, .. } => assert_eq!(name, "obj"), - _ => panic!("Expected Variable in object"), - } - assert_eq!(method, "getValue"); - assert_eq!(arguments.len(), 0); - } - _ => panic!("Expected MethodCall"), - } - } - _ => panic!("Expected Program"), - } - } - - #[test] - fn test_binary_operation_parse() { - let code = "x + y * z"; - - let result = NyashParser::parse_from_string(code); - assert!(result.is_ok()); - - let ast = result.unwrap(); - match ast { - ASTNode::Program { statements, .. } => { - assert_eq!(statements.len(), 1); - match &statements[0] { - ASTNode::BinaryOp { operator, left, right, .. } => { - assert!(matches!(operator, BinaryOperator::Add)); - match left.as_ref() { - ASTNode::Variable { name, .. } => assert_eq!(name, "x"), - _ => panic!("Expected Variable in left"), - } - match right.as_ref() { - ASTNode::BinaryOp { operator, .. } => { - assert!(matches!(operator, BinaryOperator::Multiply)); - } - _ => panic!("Expected BinaryOp in right"), - } - } - _ => panic!("Expected BinaryOp"), - } - } - _ => panic!("Expected Program"), - } - } -} \ No newline at end of file diff --git a/src/runner.rs b/src/runner.rs index bd131551..83ec0870 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -28,10 +28,11 @@ use nyash_rust::backend::{wasm::WasmBackend, aot::AotBackend}; #[cfg(feature = "llvm")] use nyash_rust::backend::{llvm_compile_and_execute}; use std::{fs, process}; +mod modes; // v2 plugin system imports -use nyash_rust::runtime::{init_global_loader_v2, get_global_registry, get_global_loader_v2, PluginConfig}; -use crate::runtime; +use nyash_rust::runtime; +use nyash_rust::runner_plugin_init; /// Main execution coordinator pub struct NyashRunner { @@ -50,7 +51,7 @@ impl NyashRunner { runtime::init_global_unified_registry(); // Try to initialize BID plugins from nyash.toml (best-effort) - self.init_bid_plugins(); + runner_plugin_init::init_bid_plugins(); // Optional: enable VM stats via CLI flags if self.config.vm_stats { @@ -78,38 +79,7 @@ impl NyashRunner { } } - fn init_bid_plugins(&self) { - // v2ãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã‚·ã‚¹ãƒ†ãƒ ã‚’åˆæœŸåŒ– - eprintln!("🔠DEBUG: Initializing v2 plugin system"); - - // Try to load nyash.toml configuration - if let Ok(()) = init_global_loader_v2("nyash.toml") { - println!("🔌 v2 plugin system initialized from nyash.toml"); - - // Apply plugin configuration to the box registry - let loader = get_global_loader_v2(); - let loader = loader.read().unwrap(); - - if let Some(config) = &loader.config { - // Register plugin providers in the box registry - let registry = get_global_registry(); - - for (lib_name, lib_def) in &config.libraries { - for box_name in &lib_def.boxes { - eprintln!(" 📦 Registering plugin provider for {}", box_name); - // Note: plugin_name is lib_name in v2 system - registry.apply_plugin_config(&PluginConfig { - plugins: [(box_name.clone(), lib_name.clone())].into(), - }); - } - } - - println!("✅ v2 plugin system fully configured"); - } - } else { - eprintln!("âš ï¸ Failed to load nyash.toml - plugins disabled"); - } - } + // init_bid_plugins moved to runner_plugin_init.rs /// Execute file-based mode with backend selection fn execute_file_mode(&self, filename: &str) { @@ -158,19 +128,31 @@ impl NyashRunner { process::exit(1); } } else if self.config.backend == "vm" { - println!("🚀 Nyash VM Backend - Executing file: {} 🚀", filename); + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("🚀 Nyash VM Backend - Executing file: {} 🚀", filename); + } self.execute_vm_mode(filename); } else if self.config.backend == "llvm" { - println!("âš¡ Nyash LLVM Backend - Executing file: {} âš¡", filename); + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("âš¡ Nyash LLVM Backend - Executing file: {} âš¡", filename); + } self.execute_llvm_mode(filename); } else { - println!("🦀 Nyash Rust Implementation - Executing file: {} 🦀", filename); - if let Some(fuel) = self.config.debug_fuel { - println!("🔥 Debug fuel limit: {} iterations", fuel); - } else { - println!("🔥 Debug fuel limit: unlimited"); + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("🦀 Nyash Rust Implementation - Executing file: {} 🦀", filename); + } + if let Some(fuel) = self.config.debug_fuel { + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("🔥 Debug fuel limit: {} iterations", fuel); + } + } else { + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("🔥 Debug fuel limit: unlimited"); + } + } + if std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1") { + println!("===================================================="); } - println!("===================================================="); self.execute_nyash_file(filename); } diff --git a/src/runner/modes/bench.rs b/src/runner/modes/bench.rs new file mode 100644 index 00000000..eba81635 --- /dev/null +++ b/src/runner/modes/bench.rs @@ -0,0 +1,50 @@ +use super::super::NyashRunner; +use nyash_rust::{parser::NyashParser, interpreter::NyashInterpreter, box_factory::builtin::BuiltinGroups, mir::MirCompiler, backend::VM}; + +impl NyashRunner { + /// Execute benchmark mode (split) + pub(crate) fn execute_benchmark_mode(&self) { + println!("ðŸ Running benchmark mode with {} iterations", self.config.iterations); + let test_code = r#" + local x + x = 42 + local y + y = x + 58 + return y + "#; + + println!("\n🧪 Test code:\n{}", test_code); + + // Interpreter + println!("\nâš¡ Interpreter Backend:"); + let start = std::time::Instant::now(); + for _ in 0..self.config.iterations { + if let Ok(ast) = NyashParser::parse_from_string(test_code) { + let mut interp = NyashInterpreter::new_with_groups(BuiltinGroups::native_full()); + let _ = interp.execute(ast); + } + } + let interpreter_time = start.elapsed(); + println!(" {} iterations in {:?} ({:.2} ops/sec)", self.config.iterations, interpreter_time, self.config.iterations as f64 / interpreter_time.as_secs_f64()); + + // VM + println!("\n🚀 VM Backend:"); + let start = std::time::Instant::now(); + for _ in 0..self.config.iterations { + if let Ok(ast) = NyashParser::parse_from_string(test_code) { + let mut mc = MirCompiler::new(); + if let Ok(cr) = mc.compile(ast) { + let mut vm = VM::new(); + let _ = vm.execute_module(&cr.module); + } + } + } + let vm_time = start.elapsed(); + println!(" {} iterations in {:?} ({:.2} ops/sec)", self.config.iterations, vm_time, self.config.iterations as f64 / vm_time.as_secs_f64()); + + // Summary + let speedup = interpreter_time.as_secs_f64() / vm_time.as_secs_f64(); + println!("\n📊 Performance Summary:\n VM is {:.2}x {} than Interpreter", if speedup > 1.0 { speedup } else { 1.0 / speedup }, if speedup > 1.0 { "faster" } else { "slower" }); + } +} + diff --git a/src/runner/modes/llvm.rs b/src/runner/modes/llvm.rs new file mode 100644 index 00000000..74d68b3f --- /dev/null +++ b/src/runner/modes/llvm.rs @@ -0,0 +1,70 @@ +use super::super::NyashRunner; +use nyash_rust::{parser::NyashParser, mir::{MirCompiler, MirInstruction}, box_trait::IntegerBox}; +use std::{fs, process}; + +impl NyashRunner { + /// Execute LLVM mode (split) + pub(crate) fn execute_llvm_mode(&self, filename: &str) { + // Read the file + let code = match fs::read_to_string(filename) { + Ok(content) => content, + Err(e) => { eprintln!("⌠Error reading file {}: {}", filename, e); process::exit(1); } + }; + + // Parse to AST + let ast = match NyashParser::parse_from_string(&code) { + Ok(ast) => ast, + Err(e) => { eprintln!("⌠Parse error: {}", e); process::exit(1); } + }; + + // Compile to MIR + let mut mir_compiler = MirCompiler::new(); + let compile_result = match mir_compiler.compile(ast) { + Ok(result) => result, + Err(e) => { eprintln!("⌠MIR compilation error: {}", e); process::exit(1); } + }; + + println!("📊 MIR Module compiled successfully!"); + println!("📊 Functions: {}", compile_result.module.functions.len()); + + // Execute via LLVM backend (mock or real) + #[cfg(feature = "llvm")] + { + use nyash_rust::backend::llvm_compile_and_execute; + let temp_path = "nyash_llvm_temp"; + match llvm_compile_and_execute(&compile_result.module, temp_path) { + Ok(result) => { + if let Some(int_result) = result.as_any().downcast_ref::() { + let exit_code = int_result.value; + println!("✅ LLVM execution completed!"); + println!("📊 Exit code: {}", exit_code); + process::exit(exit_code as i32); + } else { + println!("✅ LLVM execution completed (non-integer result)!"); + println!("📊 Result: {}", result.to_string_box().value); + } + }, + Err(e) => { eprintln!("⌠LLVM execution error: {}", e); process::exit(1); } + } + } + #[cfg(not(feature = "llvm"))] + { + println!("🔧 Mock LLVM Backend Execution:"); + println!(" Build with --features llvm for real compilation."); + if let Some(main_func) = compile_result.module.functions.get("Main.main") { + for (_bid, block) in &main_func.blocks { + for inst in &block.instructions { + match inst { + MirInstruction::Return { value: Some(_) } => { println!("✅ Mock exit code: 42"); process::exit(42); } + MirInstruction::Return { value: None } => { println!("✅ Mock exit code: 0"); process::exit(0); } + _ => {} + } + } + } + } + println!("✅ Mock exit code: 0"); + process::exit(0); + } + } +} + diff --git a/src/runner/modes/mir.rs b/src/runner/modes/mir.rs new file mode 100644 index 00000000..4340d015 --- /dev/null +++ b/src/runner/modes/mir.rs @@ -0,0 +1,49 @@ +use super::super::NyashRunner; +use nyash_rust::{parser::NyashParser, mir::{MirCompiler, MirPrinter}}; +use std::{fs, process}; + +impl NyashRunner { + /// Execute MIR compilation and processing mode (split) + pub(crate) fn execute_mir_mode(&self, filename: &str) { + // Read the file + let code = match fs::read_to_string(filename) { + Ok(content) => content, + Err(e) => { eprintln!("⌠Error reading file {}: {}", filename, e); process::exit(1); } + }; + + // Parse to AST + let ast = match NyashParser::parse_from_string(&code) { + Ok(ast) => ast, + Err(e) => { eprintln!("⌠Parse error: {}", e); process::exit(1); } + }; + + // Compile to MIR (opt passes configurable) + let mut mir_compiler = MirCompiler::with_options(!self.config.no_optimize); + let compile_result = match mir_compiler.compile(ast) { + Ok(result) => result, + Err(e) => { eprintln!("⌠MIR compilation error: {}", e); process::exit(1); } + }; + + // Verify MIR if requested + if self.config.verify_mir { + println!("🔠Verifying MIR..."); + match &compile_result.verification_result { + Ok(()) => println!("✅ MIR verification passed!"), + Err(errors) => { + eprintln!("⌠MIR verification failed:"); + for error in errors { eprintln!(" • {}", error); } + process::exit(1); + } + } + } + + // Dump MIR if requested + if self.config.dump_mir { + let mut printer = if self.config.mir_verbose { MirPrinter::verbose() } else { MirPrinter::new() }; + if self.config.mir_verbose_effects { printer.set_show_effects_inline(true); } + println!("🚀 MIR Output for {}:", filename); + println!("{}", printer.print_module(&compile_result.module)); + } + } +} + diff --git a/src/runner/modes/mod.rs b/src/runner/modes/mod.rs new file mode 100644 index 00000000..93923b7e --- /dev/null +++ b/src/runner/modes/mod.rs @@ -0,0 +1,6 @@ +pub mod mir; +pub mod vm; +pub mod llvm; +pub mod bench; +// WASM/AOT modes remain in runner.rs for now (feature-gated) + diff --git a/src/runner/modes/vm.rs b/src/runner/modes/vm.rs new file mode 100644 index 00000000..04fcf9af --- /dev/null +++ b/src/runner/modes/vm.rs @@ -0,0 +1,84 @@ +use super::super::NyashRunner; +use nyash_rust::{parser::NyashParser, mir::MirCompiler, backend::VM, runtime::{NyashRuntime, NyashRuntimeBuilder}, ast::ASTNode, core::model::BoxDeclaration as CoreBoxDecl, interpreter::SharedState, box_factory::{builtin::BuiltinGroups, user_defined::UserDefinedBoxFactory}}; +use std::{fs, process}; +use std::sync::Arc; + +impl NyashRunner { + /// Execute VM mode (split) + pub(crate) fn execute_vm_mode(&self, filename: &str) { + // Read the file + let code = match fs::read_to_string(filename) { + Ok(content) => content, + Err(e) => { eprintln!("⌠Error reading file {}: {}", filename, e); process::exit(1); } + }; + + // Parse to AST + let ast = match NyashParser::parse_from_string(&code) { + Ok(ast) => ast, + Err(e) => { eprintln!("⌠Parse error: {}", e); process::exit(1); } + }; + + // Prepare runtime and collect Box declarations for VM user-defined types + let runtime = { + let rt = NyashRuntimeBuilder::new() + .with_builtin_groups(BuiltinGroups::native_full()) + .build(); + self.collect_box_declarations(&ast, &rt); + // Register UserDefinedBoxFactory backed by the same declarations + let mut shared = SharedState::new(); + shared.box_declarations = rt.box_declarations.clone(); + let udf = Arc::new(UserDefinedBoxFactory::new(shared)); + if let Ok(mut reg) = rt.box_registry.lock() { reg.register(udf); } + rt + }; + + // Compile to MIR (opt passes configurable) + let mut mir_compiler = MirCompiler::with_options(!self.config.no_optimize); + let compile_result = match mir_compiler.compile(ast) { + Ok(result) => result, + Err(e) => { eprintln!("⌠MIR compilation error: {}", e); process::exit(1); } + }; + + // Execute with VM using prepared runtime + let mut vm = VM::with_runtime(runtime); + match vm.execute_module(&compile_result.module) { + Ok(result) => { + println!("✅ VM execution completed successfully!"); + println!("Result: {:?}", result); + }, + Err(e) => { eprintln!("⌠VM execution error: {}", e); process::exit(1); } + } + } + + /// Collect Box declarations from AST and register into runtime + pub(crate) fn collect_box_declarations(&self, ast: &ASTNode, runtime: &NyashRuntime) { + fn walk(node: &ASTNode, runtime: &NyashRuntime) { + match node { + ASTNode::Program { statements, .. } => { for st in statements { walk(st, runtime); } } + ASTNode::FunctionDeclaration { body, .. } => { for st in body { walk(st, runtime); } } + ASTNode::BoxDeclaration { name, fields, public_fields, private_fields, methods, constructors, init_fields, weak_fields, is_interface, extends, implements, type_parameters, .. } => { + for (_mname, mnode) in methods { walk(mnode, runtime); } + for (_ckey, cnode) in constructors { walk(cnode, runtime); } + let decl = CoreBoxDecl { + name: name.clone(), + fields: fields.clone(), + public_fields: public_fields.clone(), + private_fields: private_fields.clone(), + methods: methods.clone(), + constructors: constructors.clone(), + init_fields: init_fields.clone(), + weak_fields: weak_fields.clone(), + is_interface: *is_interface, + extends: extends.clone(), + implements: implements.clone(), + type_parameters: type_parameters.clone(), + }; + if let Ok(mut map) = runtime.box_declarations.write() { map.insert(name.clone(), decl); } + } + _ => {} + } + } + walk(ast, runtime); + } +} + diff --git a/src/runner_plugin_init.rs b/src/runner_plugin_init.rs new file mode 100644 index 00000000..3e0123d3 --- /dev/null +++ b/src/runner_plugin_init.rs @@ -0,0 +1,36 @@ +/*! + * Runner plugin initialization (extracted from runner.rs) + * + * Purpose: Initialize v2 plugin system from nyash.toml and apply config + * Behavior: Quiet by default; use NYASH_CLI_VERBOSE=1 or NYASH_DEBUG_PLUGIN=1 for logs + */ + +use crate::runtime::{init_global_loader_v2, get_global_registry, get_global_loader_v2, PluginConfig}; + +pub fn init_bid_plugins() { + let cli_verbose = std::env::var("NYASH_CLI_VERBOSE").ok().as_deref() == Some("1"); + let plugin_debug = std::env::var("NYASH_DEBUG_PLUGIN").ok().as_deref() == Some("1"); + if plugin_debug { eprintln!("🔠DEBUG: Initializing v2 plugin system"); } + + if let Ok(()) = init_global_loader_v2("nyash.toml") { + if plugin_debug || cli_verbose { + println!("🔌 v2 plugin system initialized from nyash.toml"); + } + let loader = get_global_loader_v2(); + let loader = loader.read().unwrap(); + if let Some(config) = &loader.config { + let registry = get_global_registry(); + for (lib_name, lib_def) in &config.libraries { + for box_name in &lib_def.boxes { + if plugin_debug { eprintln!(" 📦 Registering plugin provider for {}", box_name); } + registry.apply_plugin_config(&PluginConfig { plugins: [(box_name.clone(), lib_name.clone())].into(), }); + } + } + if plugin_debug || cli_verbose { + println!("✅ v2 plugin system fully configured"); + } + } + } else if plugin_debug || cli_verbose { + eprintln!("âš ï¸ Failed to load nyash.toml - plugins disabled"); + } +} diff --git a/ta.txt b/ta.txt deleted file mode 100644 index afa4ae4e..00000000 --- a/ta.txt +++ /dev/null @@ -1,434 +0,0 @@ -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: `nyash-rust` (lib test) generated 50 warnings (run `cargo fix --lib -p nyash-rust --tests` to apply 25 suggestions) - Finished `test` profile [unoptimized + debuginfo] target(s) in 1.81s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 1 test -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔧 execute_binary_op: op=Add, left=IntegerBox, right=IntegerBox -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠Checking StringBox downcast... -🔠StringBox downcast FAILED! -⌠Interpreter error: Invalid operation: Addition not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed - -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:590:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace -test interpreter::core::tests::test_arithmetic ... FAILED - -failures: - -failures: - interpreter::core::tests::test_arithmetic - -test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 155 filtered out; finished in 0.19s - -error: test failed, to rerun pass `--lib` diff --git a/test.txt b/test.txt deleted file mode 100644 index 4ea2f518..00000000 --- a/test.txt +++ /dev/null @@ -1 +0,0 @@ -Hello from Nyash! \ No newline at end of file diff --git a/test_out2.txt b/test_out2.txt deleted file mode 100644 index 82d2269a..00000000 --- a/test_out2.txt +++ /dev/null @@ -1,1108 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (bin "nyash") generated 45 warnings (35 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning -warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (51 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.39s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test bid::types::tests::test_handle_packing ... ok -test box_arithmetic::tests::test_compare_box ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -test box_arithmetic::tests::test_modulo_box ... ok -test box_arithmetic::tests::test_subtract_box ... ok -test box_arithmetic::tests::test_add_box_integers ... ok -🚀 Running benchmark: bench_light -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test box_operators::tests::test_integer_addition ... ok -test bid::metadata::tests::test_host_vtable ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test box_factory::tests::test_registry_creation ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test box_arithmetic::tests::test_multiply_box ... ok -test backend::vm_phi::tests::test_phi_selection ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test ast::tests::test_binary_operation ... ok -test ast::tests::test_ast_node_creation ... ok -test ast::tests::test_binary_operator ... ok -test ast::tests::test_method_call ... ok -test bid::types::tests::test_type_tags ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test box_arithmetic::tests::test_add_box_strings ... okProgram - -🔠DEBUG: Executing program with 1test box_trait::tests::test_add_box_integers ... ok statements -🔠DEBUG: Executing statement -1 of test box_operators::tests::test_string_repetition ... ok1: -BoxDeclaration -test box_operators::tests::test_dynamic_addition ... ok -test box_operators::tests::test_string_concatenation ... ok -test backend::vm::tests::test_binary_operations ... ok -test box_arithmetic::tests::test_divide_by_zero ... ok -test box_arithmetic::tests::test_modulo_by_zero ... ok -test box_trait::tests::test_add_box_strings ... ok -test bid::types::tests::test_arg_type_mapping ... ok -test box_trait::tests::test_bool_box_creation ... ok -🔠execute_statement called with node type: "test box_operators::tests::test_can_add_with ... okBoxDeclaration" - -test box_trait::tests::test_box_equality ... 🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'okMain' definition registered in statics namespace - -🔠DEBUG: Statement 1Instance: StringBox - completed -Instance: MyBox -🔠DEBUG: Starting interpreter execution... -test box_arithmetic::tests::test_divide_box ... ok🔠DEBUG: execute_node called with node type: Program - -test box_trait::tests::test_box_ids_unique ... ok🔠DEBUG: Executing program with 1 - statements -test box_trait::tests::test_integer_box_creation ... ok🔠DEBUG: Executing statement 1 - of 1test box_trait::tests::test_string_box_creation ... ok: Assignment -thread 'config::nyash_toml_v2::tests::test_parse_v2_config - -' panicked at src/config/nyash_toml_v2.rstest bid::bridge::tests::test_string_box_bid_conversion ... ok🔠execute_statement called with node type: ":179 -Assignment":62test bid::bridge::tests::test_box_registry ... ok -: -called `Result::unwrap()` on an `Err` value: TomlError { message: "invalid inline table\nexpected `}`", raw: Some("\n[libraries]\n\"libnyash_filebox_plugin.so\" = {\n boxes = [\"FileBox\"],\n path = \"./target/release/libnyash_filebox_plugin.so\"\n}\n\n[libraries.\"libnyash_filebox_plugin.so\".FileBox]\ntype_id = 6\nabi_version = 1\n\n[libraries.\"libnyash_filebox_plugin.so\".FileBox.methods]\nbirth = { method_id = 0 }\nopen = { method_id = 1 }\nclose = { method_id = 4 }\n"), keys: [], span: Some(45..46) } -🔠About to call execute_assignment... - -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace -test box_trait::tests::test_void_box ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest bid::bridge::tests::test_integer_box_bid_conversion ... ok, with 1 - arguments -test ast::tests::test_complex_ast ... ok🔠Trying unified registry for class: IntegerBox - -test boxes::null_box::tests::test_get_or_default ... ok🌠statics namespace already exists - skipping creation - -🔠DEBUG: Starting interpreter execution... -test bid::bridge::tests::test_future_box_bid_conversion ... ok🔠DEBUG: execute_node called with node type: Program - -test boxes::null_box::tests::test_null_check ... ok🔠DEBUG: Executing program with 2 - statements -test boxes::null_box::tests::test_null_creation ... ok🔠DEBUG: Executing statement 1 - of 2test boxes::null_box::tests::test_null_equality ... ok: Assignment - -test cli::tests::test_default_config ... ok🔠execute_statement called with node type: " -Assignment"test cli::tests::test_parse_debug_fuel ... ok - -🔠About to call execute_assignment... -test environment::tests::test_error_handling ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: BoolBoxtest environment::tests::test_global_environment ... ok, with 1 - arguments -test environment::tests::test_nested_scopes ... ok🔠Trying unified registry for class: BoolBox - -test environment::tests::test_python_compat ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_scope_info ... ok - -🔠DEBUG: Executing program with 2test environment::tests::test_variable_setting ... ok statements - -🔠DEBUG: Executing statement 1test environment::tests::test_variable_shadowing ... ok of 2 -: Assignmenttest finalization::tests::test_finalization_tracking ... ok - -🔠execute_statement called with node type: "test instance_v2::tests::test_field_operations ... okAssignment" - -test instance_v2::tests::test_from_any_box_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test instance_v2::tests::test_from_declaration_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test bid::plugins::filebox::tests::test_filebox_plugin ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest instance_v2::tests::test_unified_approach ... ok - -🭠Unified registry created: IntegerBoxtest mir::basic_block::tests::test_basic_block_creation ... ok - -🔠DEBUG: Starting interpreter execution... -test mir::basic_block::tests::test_basic_block_id_generator ... ok🔠DEBUG: execute_node called with node type: Program - -test mir::basic_block::tests::test_branch_successors ... ok🔠DEBUG: Executing program with 4 - statements -test mir::basic_block::tests::test_instruction_addition ... ok🔠DEBUG: Executing statement 1 - of 4test mir::basic_block::tests::test_phi_instruction_ordering ... ok: BoxDeclaration - -test mir::basic_block::tests::test_terminator_addition ... ok🔠execute_statement called with node type: " -BoxDeclaration"test mir::basic_block::tests::test_value_tracking ... ok - -🔠execute_new called for class: IntegerBoxtest mir::builder::tests::test_binary_op_building ... ok, with 1 - arguments -test mir::builder::tests::test_if_statement_building ... ok🔠Trying unified registry for class: IntegerBox - -test mir::builder::tests::test_literal_building ... ok🔥 Static box 'Main -' instance registered in statics namespace -test mir::effect::tests::test_effect_combination ... ok🭠Unified registry created: BoolBox - -test mir::effect::tests::test_effect_display ... ok🔠execute_assignment: value expression evaluated successfully - -🔠execute_statement called with node type: "test mir::effect::tests::test_effect_mask_creation ... okMethodCall" - -test mir::effect::tests::test_effect_names ... ok🔠DEBUG: Statement 1 - completed -test mir::effect::tests::test_effect_union ... ok🔠DEBUG: Executing statement 2 - of 4test mir::effect::tests::test_parallel_safety ... ok: Assignment - -test mir::function::tests::test_function_creation ... ok🔠execute_statement called with node type: " -Assignment"test mir::function::tests::test_function_stats ... ok - -🔠About to call execute_assignment... -test mir::function::tests::test_module_creation ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: TestBoxtest mir::function::tests::test_value_id_generation ... , with 0ok - arguments -test mir::instruction::tests::test_barrier_instructions ... ok🔠Trying unified registry for class: TestBox - -test mir::instruction::tests::test_binop_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_call_instruction ... ok🔠DEBUG: Interpreter execution completed - - -thread 'interpreter::core::tests::test_if_statement' panicked at src/interpreter/core.rs:608:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "x\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'x' to 'init { }' block\n • For local variables: Use 'local x'\n • For field access: Use 'me.x'" } -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::instruction::tests::test_const_instruction ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest mir::instruction::tests::test_extern_call_instruction ... ok'... - -🔠DEBUG: Found 'staticstest mir::instruction::tests::test_ref_get_instruction ... ok' in GlobalBox - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction::tests::test_ref_new_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_ref_set_instruction ... ok✅ FIELD ACCESS: Returning shared reference id=140 - -test mir::instruction::tests::test_weak_load_instruction ... ok🔠DEBUG: Interpreter execution completed - - -thread 'interpreter::core::tests::test_simple_execution' panicked at src/interpreter/core.rs:577:9: -assertion failed: result.is_ok() -🔠try_add_operation: left=IntegerBoxtest mir::instruction::tests::test_weak_new_instruction ... ok, right=IntegerBox - -test config::nyash_toml_v2::tests::test_parse_v2_config ... FAILED🔠After unwrap: left=IntegerBox -, right=IntegerBoxtest mir::instruction_v2::tests::test_effect_categories ... ok - -🔠Checking StringBox downcast... -test mir::instruction_v2::tests::test_instruction_count ... ok🔠StringBox downcast FAILED! - -🔠execute_statement called with node type: "test mir::instruction_v2::tests::test_ownership_operations ... okLocal" - -test mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok🭠Unified registry created: TestBox - -test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok🔠DEBUG: Interpreter execution completed - - -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:588:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } -🔠execute_statement called with node type: "test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... okAssignment" - -test mir::printer::tests::test_empty_module_printing ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::printer::tests::test_function_printing ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::printer::tests::test_verbose_printing ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::tests::test_basic_mir_compilation ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::tests::test_loop_compilation ... ok🭠Unified registry created: IntegerBox - -test mir::tests::test_mir_dump ... ok🔠execute_assignment: value expression evaluated successfully - -🔠execute_statement called with node type: test mir::tests::test_throw_compilation ... ok"Assignment -" -test mir::tests::test_try_catch_compilation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::value_id::tests::test_local_id_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::value_id::tests::test_local_id_generator ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::value_id::tests::test_value_id_creation ... ok - -🔠DEBUG: Interpreter execution completed -test mir::value_id::tests::test_value_id_generator ... ok🭠Unified registry created: IntegerBox -thread 'interpreter::core::tests::test_box_instance_creation' panicked at src/interpreter/core.rs:637:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "obj\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'obj' to 'init { }' block\n • For local variables: Use 'local obj'\n • For field access: Use 'me.obj'" } - - -🔠execute_assignment: value expression evaluated successfully -test mir::value_id::tests::test_value_id_ordering ... ok🔠execute_statement called with node type: " -Assignment"test interpreter::core::tests::test_if_statement ... FAILED -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::verification::tests::test_undefined_value_detection ... okIntegerBox, with -1 arguments -test mir::verification::tests::test_valid_function_verification ... ok🔠Trying unified registry for class: IntegerBox - -test runtime::box_registry::tests::test_builtin_registration ... ok🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test runtime::box_registry::tests::test_plugin_override ... ok🔠execute_statement called with node type: " -Assignment"test runtime::plugin_config::tests::test_parse_empty_config ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test runtime::plugin_config::tests::test_parse_simple_config ... ok -🔠DEBUG: resolve_variable: name='a', local_vars=["a", "b", "result", "me", "c"]test interpreter::core::tests::test_simple_execution ... FAILED -🔠DEBUG: Found ' -a' in local_vars -test runtime::plugin_config::tests::test_parse_with_comments ... ok✅ RESOLVE_VARIABLE shared reference: a - id=190test runtime::tests::tests::test_box_registry_builtin ... ok - -🔠DEBUG: resolve_variable: name='b', local_vars=["a", "b", "result", "me", "c"]test runtime::tests::tests::test_box_registry_plugin_override ... ok -🔠DEBUG: Found ' -test runtime::tests::tests::test_multiple_plugin_types ... b' in local_vars -ok -✅ RESOLVE_VARIABLE shared reference: btest runtime::tests::tests::test_plugin_config_parsing ... ok id=206 -test runtime::tests::tests::test_transparent_box_switching ... -🔠try_add_operation: left=ok -IntegerBox, right=test tests::box_tests::tests::test_array_box_nyash_trait ... okIntegerBox - -test interpreter::core::tests::test_arithmetic ... 🔠After unwrap: left=IntegerBoxFAILED -, right=IntegerBoxtest tests::box_tests::tests::test_box_id_uniqueness ... ok -🔠Checking StringBox downcast... - -test tests::box_tests::tests::test_buffer_box_nyash_trait ... 🔠StringBox downcast FAILED! -ok -test tests::box_tests::tests::test_future_box_nyash_trait ... 🔠DEBUG: Interpreter execution completed -ok -test tests::box_tests::tests::test_result_box_nyash_trait ... ok -test tokenizer::tests::test_comments ... ok -test tests::box_tests::tests::test_json_box_nyash_trait ... ok -test tokenizer::tests::test_complex_code ... ok -test tokenizer::tests::test_error_handling ... ok -test tests::box_tests::tests::test_stream_box_nyash_trait ... ok -test tokenizer::tests::test_identifier ... ok -test tokenizer::tests::test_line_numbers ... ok -test tokenizer::tests::test_number_literal ... ok -test interpreter::core::tests::test_box_instance_creation ... FAILED -88 - ðŸŽï¸ VM: First run completed -test tokenizer::tests::test_operators ... ok -88 -test tokenizer::tests::test_simple_tokens ... ok -test tokenizer::tests::test_string_literal ... ok88 -🚀 Running benchmark: bench_medium - -test value::tests::test_basic_creation ... ok -test value::tests::test_cross_type_equality ... ok -test value::tests::test_object_creation ... ok -test value::tests::test_type_conversion ... ok -test value::tests::test_type_names ... ok🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: -Program -test value::tests::test_weak_reference_basic ... ok🔠DEBUG: Executing program with 1 - statements -🔠DEBUG: Executing statement test value::tests::test_weak_reference_drop ... ok1 of -1: test value::tests::test_weak_reference_equality ... okBoxDeclaration - -🔠execute_statement called with node type: "test value::tests::test_weak_reference_string_representation ... okBoxDeclaration" - -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=223 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["me", "temp", "sum", "i"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=225 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["me", "temp", "sum", "i"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=236 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=248 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "d", "a", "f", "b", "i", "j", "result5", "result3", "c", "result4", "result2", "e", "result1", "g", "h"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=269 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "d", "a", "f", "b", "i", "j", "result5", "result3", "c", "result4", "result2", "e", "result1", "g", "h"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=273 -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.531 | 1.6 | 1.00x - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.600 | 1.8 | 1.00x - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 2.180 | 6.5 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: NaN ms - VM: 1.10 ms (NaNx faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -failures: - -failures: - config::nyash_toml_v2::tests::test_parse_v2_config - interpreter::core::tests::test_arithmetic - interpreter::core::tests::test_box_instance_creation - interpreter::core::tests::test_if_statement - interpreter::core::tests::test_simple_execution - -test result: FAILED. 151 passed; 5 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.23s - -error: test failed, to rerun pass `--lib` diff --git a/test_out3.txt b/test_out3.txt deleted file mode 100644 index cccf91fd..00000000 --- a/test_out3.txt +++ /dev/null @@ -1,1104 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (42 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) -warning: `nyash-rust` (bin "nyash") generated 45 warnings (44 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.33s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test box_arithmetic::tests::test_compare_box ... ok -test bid::metadata::tests::test_host_vtable ... ok -test box_arithmetic::tests::test_add_box_integers ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_subtract_box ... ok -test box_arithmetic::tests::test_modulo_box ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -test box_operators::tests::test_integer_addition ... ok -test bid::types::tests::test_handle_packing ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test box_factory::tests::test_registry_creation ... ok -test backend::vm_phi::tests::test_phi_selection ... ok -test ast::tests::test_ast_node_creation ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test box_operators::tests::test_string_repetition ... ok -test ast::tests::test_method_call ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test box_arithmetic::tests::test_multiply_box ... ok -test box_operators::tests::test_dynamic_addition ... ok -test box_operators::tests::test_can_add_with ... ok -test backend::vm::tests::test_binary_operations ... ok -test box_operators::tests::test_string_concatenation ... ok -test box_trait::tests::test_add_box_integers ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test bid::types::tests::test_type_tags ... ok -test ast::tests::test_binary_operation ... ok -test ast::tests::test_binary_operator ... ok -test box_arithmetic::tests::test_modulo_by_zero ... ok🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: -Program -test box_arithmetic::tests::test_divide_by_zero ... ok🔠DEBUG: Executing program with 1 - statements -🔠DEBUG: Executing statement test box_trait::tests::test_add_box_strings ... ok1 - of 1test box_arithmetic::tests::test_divide_box ... ok: BoxDeclaration - -🔠execute_statement called with node type: test bid::types::tests::test_arg_type_mapping ... ok"BoxDeclaration -" -test box_trait::tests::test_bool_box_creation ... 🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'okMain' definition registered in statics namespace - -🔠DEBUG: Statement 1Instance: StringBox - completed -Instance: MyBox -🔠DEBUG: Starting interpreter execution... -test box_trait::tests::test_box_equality ... ok🔠DEBUG: execute_node called with node type: Program - -test ast::tests::test_complex_ast ... ok🔠DEBUG: Executing program with 1 - statements -test box_trait::tests::test_box_ids_unique ... ok🔠DEBUG: Executing statement 1 - of 1test box_trait::tests::test_integer_box_creation ... ok: Assignment - -test bid::bridge::tests::test_integer_box_bid_conversion ... ok🔠execute_statement called with node type: " -Assignment"test box_trait::tests::test_string_box_creation ... ok - -🔠About to call execute_assignment... -test bid::bridge::tests::test_box_registry ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest bid::bridge::tests::test_string_box_bid_conversion ... ok, with 1 - arguments -test box_trait::tests::test_void_box ... ok🔠Trying unified registry for class: IntegerBox - -test bid::bridge::tests::test_future_box_bid_conversion ... ok🌠statics namespace already exists - skipping creation - -🔠DEBUG: Starting interpreter execution... -test boxes::null_box::tests::test_get_or_default ... ok🔠DEBUG: execute_node called with node type: Program - -test boxes::null_box::tests::test_null_check ... ok🔠DEBUG: Executing program with 2 - statements -test boxes::null_box::tests::test_null_creation ... ok🔠DEBUG: Executing statement 1 - of 2test boxes::null_box::tests::test_null_equality ... ok: Assignment - -test cli::tests::test_default_config ... ok🔠execute_statement called with node type: " -Assignment"test cli::tests::test_parse_debug_fuel ... ok - -🔠About to call execute_assignment... -test environment::tests::test_error_handling ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: BoolBoxtest environment::tests::test_global_environment ... ok, with 1 - arguments -test environment::tests::test_nested_scopes ... ok🔠Trying unified registry for class: BoolBox - -test environment::tests::test_python_compat ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_scope_info ... ok - -🔠DEBUG: Executing program with 2test environment::tests::test_variable_setting ... ok statements - -🔠DEBUG: Executing statement 1test environment::tests::test_variable_shadowing ... ok of 2 -: Assignmenttest finalization::tests::test_finalization_tracking ... ok - -🔠execute_statement called with node type: "test instance_v2::tests::test_field_operations ... okAssignment" - -test instance_v2::tests::test_from_any_box_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test instance_v2::tests::test_from_declaration_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test instance_v2::tests::test_unified_approach ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest config::nyash_toml_v2::tests::test_parse_v2_config ... ok - -🔥 Static box 'Maintest bid::plugins::filebox::tests::test_filebox_plugin ... ok' instance registered in statics namespace - -🔠DEBUG: Starting interpreter execution... -test mir::basic_block::tests::test_basic_block_creation ... ok🔠DEBUG: execute_node called with node type: Program - -test mir::basic_block::tests::test_basic_block_id_generator ... ok🔠DEBUG: Executing program with 4 - statements -test mir::basic_block::tests::test_branch_successors ... ok🔠DEBUG: Executing statement 1 - of 4test mir::basic_block::tests::test_instruction_addition ... ok: -BoxDeclaration -test mir::basic_block::tests::test_phi_instruction_ordering ... ok🔠execute_statement called with node type: " -BoxDeclaration"test mir::basic_block::tests::test_terminator_addition ... ok - -🭠Unified registry created: IntegerBoxtest mir::basic_block::tests::test_value_tracking ... ok - -🔠execute_statement called with node type: "test mir::builder::tests::test_binary_op_building ... okMethodCall" - -test mir::builder::tests::test_if_statement_building ... ok🔠DEBUG: Statement 1 - completed -test mir::builder::tests::test_literal_building ... ok🔠DEBUG: Executing statement 2 - of 4test mir::effect::tests::test_effect_combination ... ok: Assignment - -test mir::effect::tests::test_effect_display ... ok🔠execute_statement called with node type: " -Assignment"test mir::effect::tests::test_effect_mask_creation ... ok - -🔠About to call execute_assignment... -test mir::effect::tests::test_effect_names ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: TestBoxtest mir::effect::tests::test_effect_union ... ok, with 0 - arguments -test mir::effect::tests::test_parallel_safety ... 🔠Trying unified registry for class: TestBoxok - -test mir::function::tests::test_function_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::function::tests::test_function_stats ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::function::tests::test_module_creation ... -ok -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::function::tests::test_value_id_generation ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest mir::instruction::tests::test_barrier_instructions ... ok'... - -🔠DEBUG: Found 'staticstest mir::instruction::tests::test_binop_instruction ... ok' in GlobalBox - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_call_instruction ... ok - -✅ FIELD ACCESS: Returning shared reference id=143test mir::instruction::tests::test_const_instruction ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction::tests::test_extern_call_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_ref_get_instruction ... ok🔠execute_statement called with node type: " -Local"test mir::instruction::tests::test_ref_new_instruction ... ok - -🔠DEBUG: Interpreter execution completed -test mir::instruction::tests::test_ref_set_instruction ... ok🔠execute_assignment: value expression evaluated successfully - -thread 'interpreter::core::tests::test_if_statement' panicked at src/interpreter/core.rs:608:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "x\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'x' to 'init { }' block\n • For local variables: Use 'local x'\n • For field access: Use 'me.x'" } -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace - -🭠Unified registry created: TestBoxtest mir::instruction::tests::test_weak_load_instruction ... ok - -🔠execute_statement called with node type: "test mir::instruction::tests::test_weak_new_instruction ... okAssignment" - -test mir::instruction_v2::tests::test_effect_categories ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::instruction_v2::tests::test_instruction_count ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::instruction_v2::tests::test_ownership_operations ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok🭠Unified registry created: IntegerBox - -test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok🔠DEBUG: Interpreter execution completed - - -thread 'interpreter::core::tests::test_simple_execution' panicked at src/interpreter/core.rs:577:9: -assertion failed: result.is_ok() -🔠DEBUG: Interpreter execution completed -test mir::printer::tests::test_empty_module_printing ... ok🔠try_add_operation: left=IntegerBox -thread 'interpreter::core::tests::test_box_instance_creation' panicked at src/interpreter/core.rs:637:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "obj\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'obj' to 'init { }' block\n • For local variables: Use 'local obj'\n • For field access: Use 'me.obj'" } - -, right=IntegerBoxtest mir::printer::tests::test_function_printing ... ok - -🔠After unwrap: left=IntegerBoxtest mir::printer::tests::test_verbose_printing ... ok, right=IntegerBox - -test mir::tests::test_basic_mir_compilation ... ok🔠Checking StringBox downcast... - -🔠StringBox downcast FAILED! -test mir::tests::test_loop_compilation ... ok🭠Unified registry created: IntegerBox - -test mir::tests::test_mir_dump ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Interpreter execution completed -test mir::tests::test_throw_compilation ... ok -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:588:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } -🔠execute_statement called with node type: " -Assignment"test mir::tests::test_try_catch_compilation ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::value_id::tests::test_local_id_creation ... okIntegerBox, with -1 arguments -test mir::value_id::tests::test_local_id_generator ... ok🔠Trying unified registry for class: IntegerBox - -test mir::value_id::tests::test_value_id_creation ... ok🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test mir::value_id::tests::test_value_id_generator ... ok🔠execute_statement called with node type: " -Assignment"test mir::value_id::tests::test_value_id_ordering ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::verification::tests::test_undefined_value_detection ... okIntegerBox, with -1 arguments -test mir::verification::tests::test_valid_function_verification ... ok🔠Trying unified registry for class: IntegerBox - -test runtime::box_registry::tests::test_builtin_registration ... ok🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test runtime::box_registry::tests::test_plugin_override ... ok🔠execute_statement called with node type: " -Assignment"test runtime::plugin_config::tests::test_parse_empty_config ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test runtime::plugin_config::tests::test_parse_simple_config ... ok -🔠DEBUG: resolve_variable: name='a', local_vars=["a", "b", "c", "result", "me"]test runtime::plugin_config::tests::test_parse_with_comments ... ok -🔠DEBUG: Found ' -a' in local_vars -test runtime::tests::tests::test_box_registry_builtin ... ok✅ RESOLVE_VARIABLE shared reference: a - id=180test runtime::tests::tests::test_box_registry_plugin_override ... ok - -🔠DEBUG: resolve_variable: name='b', local_vars=["a", "b", "c", "result", "me"]test runtime::tests::tests::test_multiple_plugin_types ... ok -🔠DEBUG: Found ' -b' in local_vars -test runtime::tests::tests::test_plugin_config_parsing ... ok✅ RESOLVE_VARIABLE shared reference: b -test runtime::tests::tests::test_transparent_box_switching ... id=206ok - -🔠try_add_operation: left=test tests::box_tests::tests::test_array_box_nyash_trait ... okIntegerBox, right= -test tests::box_tests::tests::test_box_id_uniqueness ... IntegerBox -ok -🔠After unwrap: left=IntegerBoxtest tests::box_tests::tests::test_buffer_box_nyash_trait ... ok, right=IntegerBox - -🔠Checking StringBox downcast... -test tests::box_tests::tests::test_future_box_nyash_trait ... ok🔠StringBox downcast FAILED! - -test tests::box_tests::tests::test_result_box_nyash_trait ... ok🔠DEBUG: Interpreter execution completed - -test tests::box_tests::tests::test_stream_box_nyash_trait ... ok -test tokenizer::tests::test_comments ... ok -test interpreter::core::tests::test_simple_execution ... FAILED -test interpreter::core::tests::test_box_instance_creation ... FAILED -test interpreter::core::tests::test_arithmetic ... FAILED -test interpreter::core::tests::test_if_statement ... FAILED -test tests::box_tests::tests::test_json_box_nyash_trait ... ok -test tokenizer::tests::test_complex_code ... ok -test tokenizer::tests::test_error_handling ... ok -test tokenizer::tests::test_identifier ... ok -test tokenizer::tests::test_line_numbers ... ok -test tokenizer::tests::test_number_literal ... ok -88 - ðŸŽï¸ VM: First run completed -test tokenizer::tests::test_operators ... ok -88 -test tokenizer::tests::test_simple_tokens ... ok -88 -test tokenizer::tests::test_string_literal ... 🚀 Running benchmark: bench_medium -ok -test value::tests::test_basic_creation ... ok -test value::tests::test_cross_type_equality ... ok -test value::tests::test_object_creation ... ok -test value::tests::test_type_conversion ... ok -test value::tests::test_type_names ... ok🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: -Program -test value::tests::test_weak_reference_basic ... ok🔠DEBUG: Executing program with 1 - statements -🔠DEBUG: Executing statement test value::tests::test_weak_reference_drop ... ok1 of -1: test value::tests::test_weak_reference_equality ... okBoxDeclaration - -🔠execute_statement called with node type: "test value::tests::test_weak_reference_string_representation ... okBoxDeclaration" - -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=223 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["temp", "i", "sum", "me"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=225 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["temp", "i", "sum", "me"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=236 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=248 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["c", "b", "d", "result1", "me", "result2", "result5", "h", "g", "result4", "a", "j", "i", "f", "result3", "e"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=269 -🔠DEBUG: resolve_variable: name='b', local_vars=["c", "b", "d", "result1", "me", "result2", "result5", "h", "g", "result4", "a", "j", "i", "f", "result3", "e"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=273 -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 2.013 | 6.0 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.640 | 1.9 | 1.00x - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.550 | 1.6 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: NaN ms - VM: 1.07 ms (NaNx faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -failures: - -failures: - interpreter::core::tests::test_arithmetic - interpreter::core::tests::test_box_instance_creation - interpreter::core::tests::test_if_statement - interpreter::core::tests::test_simple_execution - -test result: FAILED. 152 passed; 4 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.20s - -error: test failed, to rerun pass `--lib` diff --git a/test_out4.txt b/test_out4.txt deleted file mode 100644 index fe08cd57..00000000 --- a/test_out4.txt +++ /dev/null @@ -1,405 +0,0 @@ - Compiling nyash-rust v0.1.0 (/mnt/c/git/nyash-project/nyash) -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -error: could not compile `nyash-rust` (lib) - -Caused by: - could not execute process `/home/tomoaki/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name nyash_rust --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type cdylib --crate-type rlib --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="cli"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("all-examples", "cli", "default", "dynamic-file", "gui", "gui-examples", "wasm-backend"))' -C metadata=024e0bfefa24aea7 --out-dir /mnt/c/git/nyash-project/nyash/target/debug/deps -C incremental=/mnt/c/git/nyash-project/nyash/target/debug/incremental -L dependency=/mnt/c/git/nyash-project/nyash/target/debug/deps --extern anyhow=/mnt/c/git/nyash-project/nyash/target/debug/deps/libanyhow-cb0106135621df54.rlib --extern chrono=/mnt/c/git/nyash-project/nyash/target/debug/deps/libchrono-0d332b6d25ba4f26.rlib --extern clap=/mnt/c/git/nyash-project/nyash/target/debug/deps/libclap-402745ede5642e57.rlib --extern console_error_panic_hook=/mnt/c/git/nyash-project/nyash/target/debug/deps/libconsole_error_panic_hook-8d542a370ca115ea.rlib --extern env_logger=/mnt/c/git/nyash-project/nyash/target/debug/deps/libenv_logger-b5822987cce07060.rlib --extern js_sys=/mnt/c/git/nyash-project/nyash/target/debug/deps/libjs_sys-9f8e174f128030e3.rlib --extern lazy_static=/mnt/c/git/nyash-project/nyash/target/debug/deps/liblazy_static-a60c6f0d6f5b0a48.rlib --extern libloading=/mnt/c/git/nyash-project/nyash/target/debug/deps/liblibloading-212293e6e9433adc.rlib --extern log=/mnt/c/git/nyash-project/nyash/target/debug/deps/liblog-97254b5c9fae48ec.rlib --extern once_cell=/mnt/c/git/nyash-project/nyash/target/debug/deps/libonce_cell-140027e2059e248c.rlib --extern regex=/mnt/c/git/nyash-project/nyash/target/debug/deps/libregex-593e58218ee7d01e.rlib --extern serde=/mnt/c/git/nyash-project/nyash/target/debug/deps/libserde-fe05dc3dd0f4c02d.rlib --extern serde_json=/mnt/c/git/nyash-project/nyash/target/debug/deps/libserde_json-4c960d663cd516d2.rlib --extern thiserror=/mnt/c/git/nyash-project/nyash/target/debug/deps/libthiserror-4e3b67f662716893.rlib --extern toml=/mnt/c/git/nyash-project/nyash/target/debug/deps/libtoml-5883ff1c2c8abaf1.rlib --extern wasm_bindgen=/mnt/c/git/nyash-project/nyash/target/debug/deps/libwasm_bindgen-79650e8bccd47590.rlib --extern web_sys=/mnt/c/git/nyash-project/nyash/target/debug/deps/libweb_sys-a459292f085ab080.rlib` (never executed) - -Caused by: - Operation not permitted (os error 1) -warning: build failed, waiting for other jobs to finish... -warning: `nyash-rust` (lib test) generated 50 warnings (run `cargo fix --lib -p nyash-rust --tests` to apply 25 suggestions) diff --git a/test_out5.txt b/test_out5.txt deleted file mode 100644 index cb9682dd..00000000 --- a/test_out5.txt +++ /dev/null @@ -1,1155 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (bin "nyash") generated 45 warnings (35 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning -warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (51 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.19s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test bid::metadata::tests::test_host_vtable ... ok -test box_arithmetic::tests::test_subtract_box ... ok -test box_arithmetic::tests::test_multiply_box ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_add_box_integers ... ok -test bid::types::tests::test_handle_packing ... ok -test box_arithmetic::tests::test_compare_box ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -test box_arithmetic::tests::test_modulo_box ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test box_operators::tests::test_integer_addition ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -test ast::tests::test_binary_operator ... ok -test ast::tests::test_ast_node_creation ... ok -test backend::vm::tests::test_binary_operations ... ok -test ast::tests::test_method_call ... ok -test backend::vm_phi::tests::test_phi_selection ... ok -test ast::tests::test_binary_operation ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test box_operators::tests::test_string_concatenation ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test box_factory::tests::test_registry_creation ... ok -test box_operators::tests::test_string_repetition ... ok🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: -Program -test bid::types::tests::test_type_tags ... ok🔠DEBUG: Executing program with 1 - statements -🔠DEBUG: Executing statement test box_operators::tests::test_can_add_with ... ok1 of -1: test box_operators::tests::test_dynamic_addition ... okBoxDeclaration - -test box_arithmetic::tests::test_divide_by_zero ... ok -test box_trait::tests::test_add_box_integers ... ok -test bid::types::tests::test_arg_type_mapping ... ok -test box_arithmetic::tests::test_modulo_by_zero ... ok -test box_arithmetic::tests::test_divide_box ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test box_trait::tests::test_add_box_strings ... ok -test box_trait::tests::test_bool_box_creation ... ok -🔠execute_statement called with node type: "Instance: StringBox -BoxDeclaration"Instance: MyBox - -test box_trait::tests::test_box_equality ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest box_trait::tests::test_box_ids_unique ... ok - -🔠DEBUG: Executing program with 1test ast::tests::test_complex_ast ... ok statements - -🔠DEBUG: Executing statement 1test box_trait::tests::test_integer_box_creation ... ok of 1 -: Assignmenttest box_trait::tests::test_string_box_creation ... ok - -🔠execute_statement called with node type: "test bid::bridge::tests::test_box_registry ... okAssignment" - -test bid::bridge::tests::test_future_box_bid_conversion ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test bid::bridge::tests::test_integer_box_bid_conversion ... ok🔠execute_new called for class: IntegerBox -, with 1test bid::bridge::tests::test_string_box_bid_conversion ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest box_trait::tests::test_void_box ... ok - -🭠Unified registry created: IntegerBoxtest boxes::null_box::tests::test_get_or_default ... ok - -🔠execute_new called for class: IntegerBoxtest boxes::null_box::tests::test_null_check ... ok, with 1 - arguments -test boxes::null_box::tests::test_null_creation ... ok🔠Trying unified registry for class: IntegerBox - -test boxes::null_box::tests::test_null_equality ... ok🌠statics namespace created in GlobalBox successfully - -🔥 Static Box 'Maintest cli::tests::test_default_config ... ok' definition registered in statics namespace - -🔠DEBUG: Starting interpreter execution... -test cli::tests::test_parse_debug_fuel ... ok🔠DEBUG: execute_node called with node type: Program - -test environment::tests::test_error_handling ... ok🔠DEBUG: Executing program with 4 - statements -test environment::tests::test_global_environment ... ok🔠DEBUG: Executing statement 1 - of 4test environment::tests::test_nested_scopes ... ok: BoxDeclaration - -test environment::tests::test_python_compat ... ok🔠execute_statement called with node type: " -BoxDeclaration"test environment::tests::test_scope_info ... ok - -🔠DEBUG: Starting interpreter execution... -test environment::tests::test_variable_setting ... ok🔠DEBUG: execute_node called with node type: Program - -test environment::tests::test_variable_shadowing ... ok🔠DEBUG: Executing program with 2 - statements -test finalization::tests::test_finalization_tracking ... ok🔠DEBUG: Executing statement 1 - of 2test instance_v2::tests::test_field_operations ... ok: Assignment - -test instance_v2::tests::test_from_any_box_creation ... ok🔠execute_statement called with node type: " -Assignment"test instance_v2::tests::test_from_declaration_creation ... ok - -🔠About to call execute_assignment... -test instance_v2::tests::test_unified_approach ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest bid::plugins::filebox::tests::test_filebox_plugin ... ok, with 1 - arguments -test mir::basic_block::tests::test_basic_block_creation ... ok🔠Trying unified registry for class: IntegerBox - -test mir::basic_block::tests::test_basic_block_id_generator ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest config::nyash_toml_v2::tests::test_parse_v2_config ... ok - -🔠DEBUG: Executing program with 2test mir::basic_block::tests::test_branch_successors ... ok statements - -🔠DEBUG: Executing statement 1test mir::basic_block::tests::test_instruction_addition ... ok of 2 -: Assignmenttest mir::basic_block::tests::test_phi_instruction_ordering ... ok - -🔠execute_statement called with node type: "test mir::basic_block::tests::test_terminator_addition ... okAssignment" - -test mir::basic_block::tests::test_value_tracking ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::builder::tests::test_binary_op_building ... ok🔠execute_new called for class: BoolBox -, with 1test mir::builder::tests::test_if_statement_building ... ok arguments - -🔠Trying unified registry for class: BoolBoxtest mir::builder::tests::test_literal_building ... ok - -🭠Unified registry created: IntegerBoxtest mir::effect::tests::test_effect_combination ... ok - -test mir::effect::tests::test_effect_display ... 🔠DEBUG: Statement 1ok - completed -test mir::effect::tests::test_effect_mask_creation ... ok🔠DEBUG: Executing statement 2 - of 4test mir::effect::tests::test_effect_names ... ok: Assignment - -test mir::effect::tests::test_effect_union ... ok🔠execute_statement called with node type: " -Assignment"test mir::effect::tests::test_parallel_safety ... ok - -🔠About to call execute_assignment... -test mir::function::tests::test_function_creation ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: TestBoxtest mir::function::tests::test_function_stats ... ok, with 0 - arguments -test mir::function::tests::test_module_creation ... ok🔠Trying unified registry for class: TestBox - -test mir::function::tests::test_value_id_generation ... ok🔠DEBUG: Statement 1 - completed -test mir::instruction::tests::test_barrier_instructions ... ok🔠try_add_operation: left=IntegerBox -, right=IntegerBoxtest mir::instruction::tests::test_binop_instruction ... ok - -🔠After unwrap: left=IntegerBoxtest mir::instruction::tests::test_call_instruction ... ok, right=IntegerBox - -test mir::instruction::tests::test_const_instruction ... ok🔠Checking StringBox downcast... - -🔠StringBox downcast FAILED! -test mir::instruction::tests::test_extern_call_instruction ... ok⌠Interpreter error: Invalid operation: -Addition not supported between IntegerBox and IntegerBox -test mir::instruction::tests::test_ref_get_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_ref_new_instruction ... ok🌠statics namespace already exists - skipping creation - -🔠DEBUG: Interpreter execution completed -test mir::instruction::tests::test_ref_set_instruction ... ok🔠execute_assignment: value expression evaluated successfully - -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:590:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_weak_load_instruction ... ok - -🔥 Static box 'Maintest mir::instruction::tests::test_weak_new_instruction ... ok' instance registered in statics namespace - -🔠DEBUG: Statement 1test mir::instruction_v2::tests::test_effect_categories ... ok completed - -🔠DEBUG: Executing statement 2test mir::instruction_v2::tests::test_instruction_count ... of 2ok -: Printtest mir::instruction_v2::tests::test_ownership_operations ... ok - -🔠execute_statement called with node type: "test mir::ownership_verifier_simple::tests::test_basic_ref_set ... okPrint" - -test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok🔠execute_statement called with node type: " -MethodCall"test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::printer::tests::test_empty_module_printing ... ok🭠Unified registry created: TestBox - -test mir::printer::tests::test_function_printing ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] - -test mir::printer::tests::test_verbose_printing ... ok🔠DEBUG: Checking GlobalBox for 'x -'... -test mir::tests::test_basic_mir_compilation ... ok🔠DEBUG: Found 'x -' in GlobalBox -test mir::tests::test_loop_compilation ... 🔠execute_assignment: value expression evaluated successfully -ok🔠DEBUG: resolve_variable: name='statics', local_vars=[] - -42 -🔠DEBUG: Checking GlobalBox for 'staticstest mir::tests::test_mir_dump ... ok'... - -🔠DEBUG: Statement 2test mir::tests::test_throw_compilation ... ok completed - -🔠DEBUG: Executing statement 3test mir::tests::test_try_catch_compilation ... ok of 4 -: Assignmenttest mir::value_id::tests::test_local_id_creation ... ok - -🔠execute_statement called with node type: "test mir::value_id::tests::test_local_id_generator ... okAssignment" - -test mir::value_id::tests::test_value_id_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::value_id::tests::test_value_id_generator ... ok🔠execute_new called for class: StringBox -, with 1test mir::value_id::tests::test_value_id_ordering ... ok arguments - -🔠Trying unified registry for class: StringBoxtest mir::verification::tests::test_undefined_value_detection ... ok - -🔠DEBUG: Statement 1test mir::verification::tests::test_valid_function_verification ... ok completed - -🔠DEBUG: Executing statement 2test runtime::box_registry::tests::test_builtin_registration ... ok of 2 -: Iftest runtime::box_registry::tests::test_plugin_override ... ok - -🔠execute_statement called with node type: "test runtime::plugin_config::tests::test_parse_empty_config ... okIf" - -test runtime::plugin_config::tests::test_parse_simple_config ... ok🭠Unified registry created: StringBox - -test runtime::plugin_config::tests::test_parse_with_comments ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Found 'staticstest runtime::tests::tests::test_box_registry_builtin ... ok' in GlobalBox - -🔠DEBUG: resolve_variable: name='x', local_vars=[]test runtime::tests::tests::test_box_registry_plugin_override ... ok - -🔠DEBUG: Checking GlobalBox for 'xtest runtime::tests::tests::test_multiple_plugin_types ... ok'... - -🔠DEBUG: Found 'xtest runtime::tests::tests::test_plugin_config_parsing ... ok' in GlobalBox - -test runtime::tests::tests::test_transparent_box_switching ... 🔠execute_statement called with node type: "ok -Assignment"test tests::box_tests::tests::test_array_box_nyash_trait ... ok - -test tests::box_tests::tests::test_box_id_uniqueness ... 🔠About to call execute_assignment... -ok -🔠execute_assignment called, evaluating value expression... -test tests::box_tests::tests::test_buffer_box_nyash_trait ... ok🔠execute_new called for class: StringBox -, with 1test tests::box_tests::tests::test_future_box_nyash_trait ... ok arguments - -test tests::box_tests::tests::test_result_box_nyash_trait ... 🔠Trying unified registry for class: StringBoxok - -test tests::box_tests::tests::test_stream_box_nyash_trait ... ok🔠DEBUG: resolve_variable: name='obj', local_vars=[] -test tokenizer::tests::test_comments ... -ok -🔠DEBUG: Checking GlobalBox for 'objtest tests::box_tests::tests::test_json_box_nyash_trait ... ok'... - -test tokenizer::tests::test_complex_code ... 🔠DEBUG: Found 'objok -' in GlobalBox -test tokenizer::tests::test_error_handling ... ok🭠Unified registry created: StringBox -test tokenizer::tests::test_identifier ... -ok -🔠execute_assignment: value expression evaluated successfully -test tokenizer::tests::test_line_numbers ... ok🔠DEBUG: Statement -test tokenizer::tests::test_number_literal ... 2 completed -ok -🔠DEBUG: Statement 3test tokenizer::tests::test_operators ... ok completed - -test tokenizer::tests::test_simple_tokens ... 🔠DEBUG: Executing statement 4ok - of 4test tokenizer::tests::test_string_literal ... ok: Assignment -test value::tests::test_basic_creation ... -ok -🔠execute_statement called with node type: "test value::tests::test_cross_type_equality ... okAssignment" - -🔠About to call execute_assignment... -test interpreter::core::tests::test_arithmetic ... FAILED🔠execute_assignment called, evaluating value expression... - -🔠stdlib not initialized for method call -test value::tests::test_object_creation ... ok🔠DEBUG: Interpreter execution completed - -✅ FIELD ACCESS: Returning shared reference id=157test value::tests::test_type_conversion ... ok - -🔠DEBUG: Statement 2test value::tests::test_type_names ... ok completed - -🔠DEBUG: resolve_variable: name='obj', local_vars=[]test value::tests::test_weak_reference_basic ... ok - -🔠DEBUG: Checking GlobalBox for 'objtest value::tests::test_weak_reference_drop ... ok'... - -🔠DEBUG: Found 'objtest value::tests::test_weak_reference_equality ... ok' in GlobalBox - -🔠execute_statement called with node type: "test value::tests::test_weak_reference_string_representation ... okLocal" - -test interpreter::core::tests::test_simple_execution ... ok🔠DEBUG: Interpreter execution completed - -🔠execute_statement called with node type: "Return" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: resolve_variable: name='y', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'y'... -🔠DEBUG: Found 'y' in GlobalBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"]test interpreter::core::tests::test_if_statement ... ok - -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=160 -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -✅ FIELD ACCESS: Returning shared reference id=197 -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 4 completed -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🔠DEBUG: Interpreter execution completed -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "c", "a", "b", "result"]test interpreter::core::tests::test_box_instance_creation ... ok -🔠DEBUG: Found ' -a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=215 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "c", "a", "b", "result"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=221 -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠Checking StringBox downcast... -🔠StringBox downcast FAILED! -⌠Interpreter error: Invalid operation: Addition not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed -88 - ðŸŽï¸ VM: First run completed -88 -88 -🚀 Running benchmark: bench_medium -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=236 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "temp", "me"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=238 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "temp", "me"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=249 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -⌠Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=261 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "b", "d", "result1", "a", "e", "c", "result2", "g", "f", "result4", "result5", "j", "h", "i", "result3"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=282 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "b", "d", "result1", "a", "e", "c", "result2", "g", "f", "result4", "result5", "j", "h", "i", "result3"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=286 -⌠Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.694 | 2.1 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.605 | 1.8 | 1.00x - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.294 | 0.9 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: NaN ms - VM: 0.53 ms (NaNx faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -failures: - -failures: - interpreter::core::tests::test_arithmetic - -test result: FAILED. 155 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.26s - -error: test failed, to rerun pass `--lib` diff --git a/test_out_full.txt b/test_out_full.txt deleted file mode 100644 index 063a571c..00000000 --- a/test_out_full.txt +++ /dev/null @@ -1,1155 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (bin "nyash") generated 45 warnings (35 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings -warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (51 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.16s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test bid::metadata::tests::test_host_vtable ... ok -test box_arithmetic::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_modulo_box ... ok -test box_arithmetic::tests::test_multiply_box ... ok -test bid::types::tests::test_handle_packing ... ok -test box_arithmetic::tests::test_compare_box ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test box_operators::tests::test_integer_addition ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test backend::vm::tests::test_binary_operations ... ok -test ast::tests::test_binary_operator ... ok -test box_factory::tests::test_registry_creation ... ok -test ast::tests::test_ast_node_creation ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test ast::tests::test_method_call ... ok -test box_arithmetic::tests::test_subtract_box ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test box_operators::tests::test_string_concatenation ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test box_operators::tests::test_string_repetition ... okProgram - -🔠DEBUG: Executing program with 1test box_arithmetic::tests::test_divide_by_zero ... ok statements -🔠DEBUG: Executing statement -1 of test box_arithmetic::tests::test_modulo_by_zero ... ok1: -BoxDeclaration -test ast::tests::test_binary_operation ... ok -test bid::types::tests::test_type_tags ... ok -test box_operators::tests::test_can_add_with ... ok -test box_operators::tests::test_dynamic_addition ... ok -test bid::types::tests::test_arg_type_mapping ... ok -test box_trait::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_divide_box ... ok -test box_trait::tests::test_add_box_strings ... ok -🔠execute_statement called with node type: "test backend::vm_phi::tests::test_phi_selection ... okBoxDeclaration" - -test box_trait::tests::test_bool_box_creation ... 🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'okMain' definition registered in statics namespace - -🔠DEBUG: Statement 1Instance: StringBox - completed -Instance: MyBox -🔠DEBUG: Starting interpreter execution... -test box_trait::tests::test_box_equality ... ok🔠DEBUG: execute_node called with node type: Program - -test box_trait::tests::test_box_ids_unique ... ok🔠DEBUG: Executing program with 1 - statements -test ast::tests::test_complex_ast ... ok🔠DEBUG: Executing statement 1 - of 1test box_trait::tests::test_integer_box_creation ... ok: Assignment - -test box_trait::tests::test_string_box_creation ... ok🔠execute_statement called with node type: " -Assignment"test bid::bridge::tests::test_integer_box_bid_conversion ... ok - -🔠About to call execute_assignment... -test bid::bridge::tests::test_string_box_bid_conversion ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest bid::bridge::tests::test_box_registry ... ok, with 1 - arguments -test bid::bridge::tests::test_future_box_bid_conversion ... ok🔠Trying unified registry for class: IntegerBox - -test box_trait::tests::test_void_box ... ok🌠statics namespace already exists - skipping creation - -🔠DEBUG: Starting interpreter execution... -test boxes::null_box::tests::test_get_or_default ... ok🔠DEBUG: execute_node called with node type: Program - -test boxes::null_box::tests::test_null_check ... ok🔠DEBUG: Executing program with 2 - statements -test boxes::null_box::tests::test_null_creation ... ok🔠DEBUG: Executing statement 1 - of 2test boxes::null_box::tests::test_null_equality ... ok: Assignment - -test cli::tests::test_default_config ... ok🔠execute_statement called with node type: " -Assignment"test cli::tests::test_parse_debug_fuel ... ok - -🔠About to call execute_assignment... -test environment::tests::test_error_handling ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: BoolBoxtest environment::tests::test_global_environment ... ok, with 1 - arguments -test environment::tests::test_nested_scopes ... ok🔠Trying unified registry for class: BoolBox - -test environment::tests::test_python_compat ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_scope_info ... ok - -🔠DEBUG: Executing program with 2test environment::tests::test_variable_setting ... ok statements - -🔠DEBUG: Executing statement 1test environment::tests::test_variable_shadowing ... ok of 2 -: Assignmenttest finalization::tests::test_finalization_tracking ... ok - -🔠execute_statement called with node type: "test instance_v2::tests::test_field_operations ... okAssignment" - -test instance_v2::tests::test_from_any_box_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test instance_v2::tests::test_from_declaration_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test instance_v2::tests::test_unified_approach ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest bid::plugins::filebox::tests::test_filebox_plugin ... ok - -🔥 Static box 'Maintest mir::basic_block::tests::test_basic_block_creation ... ok' instance registered in statics namespace - -🔠DEBUG: Starting interpreter execution... -test config::nyash_toml_v2::tests::test_parse_v2_config ... ok🔠DEBUG: execute_node called with node type: Program - -test mir::basic_block::tests::test_basic_block_id_generator ... ok🔠DEBUG: Executing program with 4 - statements -test mir::basic_block::tests::test_branch_successors ... ok🔠DEBUG: Executing statement 1 - of 4test mir::basic_block::tests::test_instruction_addition ... ok: BoxDeclaration - -test mir::basic_block::tests::test_phi_instruction_ordering ... ok🔠execute_statement called with node type: " -BoxDeclaration"test mir::basic_block::tests::test_terminator_addition ... ok - -🭠Unified registry created: IntegerBoxtest mir::basic_block::tests::test_value_tracking ... ok - -🔠execute_statement called with node type: "test mir::builder::tests::test_binary_op_building ... okMethodCall" - -test mir::builder::tests::test_if_statement_building ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::builder::tests::test_literal_building ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::effect::tests::test_effect_combination ... ok - -🔠DEBUG: Statement 1test mir::effect::tests::test_effect_display ... ok completed - -🔠DEBUG: Executing statement 2test mir::effect::tests::test_effect_mask_creation ... ok of 4 -: Assignmenttest mir::effect::tests::test_effect_names ... ok - -🔠execute_statement called with node type: "test mir::effect::tests::test_effect_union ... okAssignment" - -test mir::effect::tests::test_parallel_safety ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::function::tests::test_function_creation ... ok🔠execute_new called for class: TestBox -, with 0test mir::function::tests::test_function_stats ... ok arguments - -🔠Trying unified registry for class: TestBoxtest mir::function::tests::test_module_creation ... ok - -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::function::tests::test_value_id_generation ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest mir::instruction::tests::test_barrier_instructions ... ok'... - -🔠DEBUG: Found 'staticstest mir::instruction::tests::test_binop_instruction ... ok' in GlobalBox - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_call_instruction ... ok - -✅ FIELD ACCESS: Returning shared reference id=143test mir::instruction::tests::test_const_instruction ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction::tests::test_extern_call_instruction ... ok🭠Unified registry created: IntegerBox - -test mir::instruction::tests::test_ref_get_instruction ... ok🔠execute_statement called with node type: " -Local"test mir::instruction::tests::test_ref_new_instruction ... ok - -🔠DEBUG: Statement 1test mir::instruction::tests::test_ref_set_instruction ... ok completed - -🔠DEBUG: Executing statement 2test mir::instruction::tests::test_weak_load_instruction ... ok of 2 -: Iftest mir::instruction::tests::test_weak_new_instruction ... ok - -🔠execute_statement called with node type: "test mir::instruction_v2::tests::test_effect_categories ... okIf" - -test mir::instruction_v2::tests::test_instruction_count ... ok🔠execute_statement called with node type: " -Assignment"test mir::instruction_v2::tests::test_ownership_operations ... ok - -🔠About to call execute_assignment... -test mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok, with 1 - arguments -test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok🔠Trying unified registry for class: IntegerBox - -test mir::printer::tests::test_empty_module_printing ... ok🭠Unified registry created: IntegerBox - -test mir::printer::tests::test_function_printing ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] - -test mir::printer::tests::test_verbose_printing ... ok🔠DEBUG: Checking GlobalBox for 'x -'... -test mir::tests::test_basic_mir_compilation ... ok🔠DEBUG: Found 'x -' in GlobalBox -test mir::tests::test_loop_compilation ... ok🔠execute_statement called with node type: " -Assignment"test mir::tests::test_mir_dump ... ok - -🔠About to call execute_assignment... -test mir::tests::test_throw_compilation ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: StringBoxtest mir::tests::test_try_catch_compilation ... ok, with 1 - arguments -test mir::value_id::tests::test_local_id_creation ... ok🔠Trying unified registry for class: StringBox - -test mir::value_id::tests::test_local_id_generator ... ok🔠try_add_operation: left=IntegerBox -, right=IntegerBoxtest mir::value_id::tests::test_value_id_creation ... ok - -🔠After unwrap: left=IntegerBoxtest mir::value_id::tests::test_value_id_generator ... ok, right=IntegerBox - -test mir::value_id::tests::test_value_id_ordering ... ok🔠Checking StringBox downcast... - -🔠StringBox downcast FAILED! -test mir::verification::tests::test_undefined_value_detection ... ok⌠Interpreter error: Invalid operation: -Addition not supported between IntegerBox and IntegerBox -test mir::verification::tests::test_valid_function_verification ... ok🭠Unified registry created: TestBox - -test runtime::box_registry::tests::test_builtin_registration ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: Interpreter execution completed -test runtime::box_registry::tests::test_plugin_override ... ok🔠execute_assignment: value expression evaluated successfully - -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:590:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace - -🭠Unified registry created: IntegerBoxtest runtime::plugin_config::tests::test_parse_empty_config ... ok - -🔠DEBUG: Statement 1test runtime::plugin_config::tests::test_parse_simple_config ... ok completed - -🔠DEBUG: Executing statement 2test runtime::plugin_config::tests::test_parse_with_comments ... ok of 2 -: Printtest runtime::tests::tests::test_box_registry_builtin ... ok - -🔠execute_statement called with node type: "test runtime::tests::tests::test_box_registry_plugin_override ... okPrint" - -test runtime::tests::tests::test_multiple_plugin_types ... ok🭠Unified registry created: StringBox - -test runtime::tests::tests::test_plugin_config_parsing ... ok🔠execute_assignment: value expression evaluated successfully - -🔠execute_assignment: value expression evaluated successfully -test runtime::tests::tests::test_transparent_box_switching ... ok🔠DEBUG: resolve_variable: name='x', local_vars=[] -test tests::box_tests::tests::test_array_box_nyash_trait ... -ok -🔠DEBUG: Checking GlobalBox for 'xtest tests::box_tests::tests::test_box_id_uniqueness ... ok'... - -test tests::box_tests::tests::test_buffer_box_nyash_trait ... 🔠DEBUG: Found 'xok -' in GlobalBox -test tests::box_tests::tests::test_future_box_nyash_trait ... 🔠execute_statement called with node type: "okAssignment" - -test tests::box_tests::tests::test_result_box_nyash_trait ... 🔠About to call execute_assignment... -ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: IntegerBoxtest tests::box_tests::tests::test_stream_box_nyash_trait ... , with 1ok arguments - -🔠Trying unified registry for class: IntegerBoxtest tokenizer::tests::test_comments ... -ok🔠DEBUG: Statement 2 - completed -test tests::box_tests::tests::test_json_box_nyash_trait ... 🔠DEBUG: Executing statement 3ok of 4 -: Assignmenttest tokenizer::tests::test_complex_code ... -ok🔠execute_statement called with node type: " -Assignment"test tokenizer::tests::test_error_handling ... -ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test tokenizer::tests::test_identifier ... 🔠execute_new called for class: StringBoxok, with 1 - arguments -test tokenizer::tests::test_line_numbers ... 🔠Trying unified registry for class: StringBoxok - -🔠DEBUG: Statement 2test tokenizer::tests::test_number_literal ... completed -ok🭠Unified registry created: IntegerBox - -test tokenizer::tests::test_operators ... 🔠DEBUG: Interpreter execution completed -ok🔠execute_assignment: value expression evaluated successfully - -🔠execute_statement called with node type: "test tokenizer::tests::test_simple_tokens ... Assignment"ok - -🔠About to call execute_assignment... -test tokenizer::tests::test_string_literal ... 🔠execute_assignment called, evaluating value expression... -ok🔠execute_new called for class: IntegerBox -, with 1test value::tests::test_basic_creation ... arguments -ok🔠Trying unified registry for class: IntegerBox - -42 -🔠DEBUG: resolve_variable: name='y', local_vars=[]test value::tests::test_cross_type_equality ... ok - -🔠DEBUG: Checking GlobalBox for 'ytest value::tests::test_object_creation ... ok'... - -🔠DEBUG: Found 'ytest value::tests::test_type_conversion ... ok' in GlobalBox - -🭠Unified registry created: StringBoxtest value::tests::test_type_names ... ok - -🔠DEBUG: Statement 2test value::tests::test_weak_reference_basic ... ok completed - -🔠execute_assignment: value expression evaluated successfully -test value::tests::test_weak_reference_drop ... ok🭠Unified registry created: IntegerBox - -test value::tests::test_weak_reference_equality ... ok🔠execute_assignment: value expression evaluated successfully - -🔠DEBUG: resolve_variable: name='obj', local_vars=[]test value::tests::test_weak_reference_string_representation ... ok - -🔠DEBUG: Checking GlobalBox for 'objtest interpreter::core::tests::test_arithmetic ... FAILED'... - -🔠DEBUG: Found 'objtest interpreter::core::tests::test_if_statement ... ok' in GlobalBox - -🔠DEBUG: Interpreter execution completed -🔠execute_statement called with node type: "test interpreter::core::tests::test_simple_execution ... okAssignment" - -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: Statement 3 completed -🔠DEBUG: Executing statement 4 of 4: Assignment -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠stdlib not initialized for method call -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result", "c", "b", "a"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=201 -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result", "c", "b", "a"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=215 -🔠try_add_operation: left=IntegerBox, right=IntegerBox -🔠After unwrap: left=IntegerBox, right=IntegerBox -🔠Checking StringBox downcast... -🔠StringBox downcast FAILED! -🔠execute_statement called with node type: "Return" -⌠Interpreter error: Invalid operation: Addition not supported between IntegerBox and IntegerBox -🔠DEBUG: resolve_variable: name='me', local_vars=["me"] -🔠DEBUG: Found 'me' in local_vars -✅ RESOLVE_VARIABLE shared reference: me id=184 -🔠DEBUG: Interpreter execution completed -✅ FIELD ACCESS: Returning shared reference id=21788 - ðŸŽï¸ VM: First run completed - -88 -🔠execute_assignment: value expression evaluated successfully -🔠DEBUG: Statement 488 - completed -🚀 Running benchmark: bench_medium -🔠DEBUG: Interpreter execution completed -🔠DEBUG: resolve_variable: name='obj', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'obj'... -🔠DEBUG: Found 'obj' in GlobalBox -🔠DEBUG: resolve_variable: name='result', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'result'... -🔠DEBUG: Found 'result' in GlobalBox -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test interpreter::core::tests::test_box_instance_creation ... okProgram - -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=236 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "temp", "me"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=238 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "temp", "me"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=249 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -⌠Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=261 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["b", "i", "me", "result4", "h", "result3", "g", "f", "j", "c", "result1", "e", "a", "result5", "d", "result2"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=282 -🔠DEBUG: resolve_variable: name='b', local_vars=["b", "i", "me", "result4", "h", "result3", "g", "f", "j", "c", "result1", "e", "a", "result5", "d", "result2"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=286 -⌠Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.700 | 2.1 | 1.00x - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.487 | 1.5 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.599 | 1.8 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: NaN ms - VM: 0.60 ms (NaNx faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -failures: - -failures: - interpreter::core::tests::test_arithmetic - -test result: FAILED. 155 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.24s - -error: test failed, to rerun pass `--lib` diff --git a/test_output.txt b/test_output.txt deleted file mode 100644 index dac0ea08..00000000 --- a/test_output.txt +++ /dev/null @@ -1,197 +0,0 @@ -🔠DEBUG: Initializing v2 plugin system -[net] Net plugin initialized, LOG_ON=true, LOG_PATH=net_plugin.log -Net plugin: LOG_ON=true, LOG_PATH=net_plugin.log -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_net_plugin.so -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_counter_plugin.so -[FileBox] Plugin initialized -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_filebox_plugin.so -🔌 v2 plugin system initialized from nyash.toml - 📦 Registering plugin provider for HttpServerBox - 📦 Registering plugin provider for HttpClientBox - 📦 Registering plugin provider for HttpResponseBox - 📦 Registering plugin provider for HttpRequestBox - 📦 Registering plugin provider for SocketServerBox - 📦 Registering plugin provider for SocketClientBox - 📦 Registering plugin provider for SocketConnBox - 📦 Registering plugin provider for CounterBox - 📦 Registering plugin provider for FileBox -✅ v2 plugin system fully configured -🦀 Nyash Rust Implementation - Executing file: local_tests/test_http_simple_e2e.nyash 🦀 -🔥 Debug fuel limit: 100000 iterations -==================================================== -📠File contents: -// Very simple HTTP test -local srv, cli, r, resp -srv = new HttpServerBox() -print("HttpServerBox created") - -// Start server -local startResult = srv.start(8090) -print("Server start result:") -print(startResult) - -// Create client -cli = new HttpClientBox() -print("HttpClientBox created") - -// Make request -r = cli.get("http://localhost:8090/test") -print("Request made") - -// Accept connection -local acceptResult = srv.accept() -print("Accept result:") -print(acceptResult) - -// Get value from accept result -local req = acceptResult.get_value() -print("Got request value") - -// Create response -resp = new HttpResponseBox() -resp.write("Hello!") -print("Response created and written") - -// Send response -req.respond(resp) -print("Response sent") - -// Get response on client side -local clientResp = r.get_value() -print("Got client response") - -// Read body -local body = clientResp.readBody() -print("Body: " + body) - -🚀 Parsing and executing... - -🔠DEBUG: Starting parse with fuel: Some(100000)... -🔠DEBUG: Parse completed, AST created -🔠DEBUG: About to print parse success message... -✅ Parse successful! -🔠DEBUG: Parse success message printed -🔠DEBUG: Creating interpreter... -🔠DEBUG: Starting execution... -🔠create_box called for: HttpServerBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpServerBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpServerBox with type_id: 20 -🔠Preparing to call birth() with type_id: 20 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=20, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpServerBox instance_id=1 -🔠DEBUG: PluginBoxV2::share_box called for HttpServerBox (id=1) -HttpServerBox created -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpServerBox (id=1) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: start -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpServerBox.start -[PluginLoaderV2] Invoke HttpServerBox.start: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: Integer(8090) -> I32(tag=2) -[net] http:listener bound 127.0.0.1:8090 -Server start result: -Ok(void) -🔠create_box called for: HttpClientBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpClientBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpClientBox with type_id: 23 -🔠Preparing to call birth() with type_id: 23 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=23, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpClientBox instance_id=1 -🔠DEBUG: PluginBoxV2::share_box called for HttpClientBox (id=1) -HttpClientBox created -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpClientBox (id=1) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: get -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpClientBox.get -[PluginLoaderV2] Invoke HttpClientBox.get: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: String(len=26) -> String(tag=6) -[net] client.get: url=http://localhost:8090/test resp_id=1 tcp_ok=true conn_id=1 -[net] http:accept linked resp_id hint=1 for req_id=1 conn_id=2 -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=1) -Request made -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpServerBox (id=1) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: accept -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpServerBox.accept -[PluginLoaderV2] Invoke HttpServerBox.accept: resolving and encoding args (argc=0) -[net] server.accept: return req_id=1 srv_id=1 -Accept result: -🔠DEBUG: PluginBoxV2::share_box called for HttpRequestBox (id=1) -Ok(HttpRequestBox(1)) -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpRequestBox (id=1) -🔠DEBUG: execute_method_call - object type: NyashResultBox, method: get_value -🔠DEBUG: Checking StringBox downcast for type: NyashResultBox -🔠DEBUG: StringBox downcast failed -🔠DEBUG: PluginBoxV2::share_box called for HttpRequestBox (id=1) -🔠DEBUG: PluginBoxV2::share_box called for HttpRequestBox (id=1) -Got request value -🔠create_box called for: HttpResponseBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpResponseBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpResponseBox with type_id: 22 -🔠Preparing to call birth() with type_id: 22 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=22, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpResponseBox instance_id=2 -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=2) -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=2) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: write -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpResponseBox.write -[PluginLoaderV2] Invoke HttpResponseBox.write: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: String(len=6) -> String(tag=6) -[net] HttpResponse.write: id=2 bytes_len=6 -[net] HttpResponse.write: body now has 6 bytes -Response created and written -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpRequestBox (id=1) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: respond -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpRequestBox.respond -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=2) -[PluginLoaderV2] Invoke HttpRequestBox.respond: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: PluginBoxV2(HttpResponseBox, id=2) -> Handle(tag=8) -Response sent -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=1) -🔠DEBUG: execute_method_call - object type: NyashResultBox, method: get_value -🔠DEBUG: Checking StringBox downcast for type: NyashResultBox -🔠DEBUG: StringBox downcast failed -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=1) -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=1) -Got client response -🔠stdlib not initialized for method call -🔠DEBUG: PluginBoxV2::share_box called for HttpResponseBox (id=1) -🔠DEBUG: execute_method_call - object type: PluginBoxV2, method: readBody -🔠DEBUG: Checking StringBox downcast for type: PluginBoxV2 -🔠DEBUG: StringBox downcast failed -🔠execute_plugin_box_v2_method called: HttpResponseBox.readBody -[PluginLoaderV2] Invoke HttpResponseBox.readBody: resolving and encoding args (argc=0) diff --git a/test_results.txt b/test_results.txt deleted file mode 100644 index 46017db5..00000000 --- a/test_results.txt +++ /dev/null @@ -1,71 +0,0 @@ - -running 8 tests -test mir::instruction_v2::tests::test_instruction_count ... ok -test mir::instruction_v2::tests::test_ownership_operations ... ok -test mir::instruction_v2::tests::test_effect_categories ... ok -test instance_v2::tests::test_from_declaration_creation ... ok -test instance_v2::tests::test_from_any_box_creation ... ok -test instance_v2::tests::test_unified_approach ... ok -test instance_v2::tests::test_field_operations ... ok -test config::nyash_toml_v2::tests::test_parse_v2_config ... ok - -test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 148 filtered out; finished in 0.04s - - -running 8 tests -test mir::instruction_v2::tests::test_ownership_operations ... ok -test mir::instruction_v2::tests::test_instruction_count ... ok -test mir::instruction_v2::tests::test_effect_categories ... ok -test instance_v2::tests::test_field_operations ... ok -test instance_v2::tests::test_from_declaration_creation ... ok -test instance_v2::tests::test_from_any_box_creation ... ok -test instance_v2::tests::test_unified_approach ... ok -test config::nyash_toml_v2::tests::test_parse_v2_config ... ok - -test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 137 filtered out; finished in 0.04s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 3 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 16 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 2 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 3 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 3 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s - - -running 0 tests - -test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s - diff --git a/test_return_42.nyash b/test_return_42.nyash deleted file mode 100644 index 40710365..00000000 --- a/test_return_42.nyash +++ /dev/null @@ -1,5 +0,0 @@ -static box Main { - main() { - return 42 - } -} \ No newline at end of file diff --git a/test_run_output.txt b/test_run_output.txt deleted file mode 100644 index aa37d8e0..00000000 --- a/test_run_output.txt +++ /dev/null @@ -1,1140 +0,0 @@ -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `HashSet` - --> src/mir/loop_builder.rs:13:33 - | -13 | use std::collections::{HashMap, HashSet}; - | ^^^^^^^ - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:13:7 - | -13 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/backend/mod.rs:23:7 - | -23 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unused import: `MirInstruction` - --> src/backend/vm_phi.rs:9:41 - | -9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `super::Usize` - --> src/bid/types.rs:1:5 - | -1 | use super::Usize; - | ^^^^^^^^^^^^ - -warning: unused import: `std::os::raw::c_char` - --> src/bid/plugin_api.rs:2:5 - | -2 | use std::os::raw::c_char; - | ^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` - --> src/bid/plugins/filebox/mod.rs:7:18 - | -7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; - | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ - -warning: unused imports: `SeekFrom` and `Seek` - --> src/bid/plugins/filebox/mod.rs:10:28 - | -10 | use std::io::{Read, Write, Seek, SeekFrom}; - | ^^^^ ^^^^^^^^ - -warning: unused imports: `c_char` and `c_void` - --> src/bid/plugins/filebox/mod.rs:11:20 - | -11 | use std::os::raw::{c_char, c_void}; - | ^^^^^^ ^^^^^^ - -warning: unused imports: `CStr` and `CString` - --> src/bid/plugins/filebox/mod.rs:13:16 - | -13 | use std::ffi::{CStr, CString}; - | ^^^^ ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/bid/loader.rs:3:5 - | -3 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused imports: `TlvDecoder` and `TlvEncoder` - --> src/bid/generic_plugin_box.rs:2:23 - | -2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; - | ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `crate::bid::types::BidTag` - --> src/bid/generic_plugin_box.rs:3:5 - | -3 | use crate::bid::types::BidTag; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BoxBase` - --> src/runtime/plugin_loader_v2.rs:7:43 - | -7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; - | ^^^^^^^ - -warning: unused import: `std::ffi::c_void` - --> src/runtime/plugin_loader_v2.rs:11:5 - | -11 | use std::ffi::c_void; - | ^^^^^^^^^^^^^^^^ - -warning: unused variable: `registry` - --> src/box_factory/plugin.rs:53:13 - | -53 | let registry = get_global_registry(); - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `args` - --> src/instance_v2.rs:147:28 - | -147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: unused variable: `nyash_value` - --> src/instance_v2.rs:289:21 - | -289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { - | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:246:39 - | -246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `block_id` - --> src/mir/loop_builder.rs:273:49 - | -273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { - | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` - -warning: unused variable: `dst` - --> src/backend/vm_phi.rs:48:9 - | -48 | dst: ValueId, - | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:167:36 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:176:35 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:176:25 - | -176 | pub fn with_free(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `f` - --> src/bid/plugin_api.rs:183:34 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ^ help: if this is intentional, prefix it with an underscore: `_f` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:183:24 - | -183 | pub fn with_log(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `args` - --> src/runtime/plugin_loader_v2.rs:236:46 - | -236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { - | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` - -warning: type `FileMode` is more private than the item `FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: field `block_var_maps` is never read - --> src/mir/loop_builder.rs:35:5 - | -27 | pub struct LoopBuilder<'a> { - | ----------- field in this struct -... -35 | block_var_maps: HashMap>, - | ^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: fields `type_name_holder` and `method_holders` are never read - --> src/bid/metadata.rs:148:5 - | -143 | pub struct PluginMetadata { - | -------------- fields in this struct -... -148 | type_name_holder: Option, - | ^^^^^^^^^^^^^^^^ -149 | method_holders: Vec<(NyashMethodInfo, CString)>, - | ^^^^^^^^^^^^^^ - -warning: fields `path` and `mode` are never read - --> src/bid/plugins/filebox/mod.rs:24:5 - | -22 | struct FileBoxState { - | ------------ fields in this struct -23 | file: File, -24 | path: String, - | ^^^^ -25 | mode: FileMode, - | ^^^^ - -warning: fields `box_types` and `init_fn` are never read - --> src/runtime/plugin_loader_v2.rs:20:5 - | -15 | pub struct LoadedPluginV2 { - | -------------- fields in this struct -... -20 | box_types: Vec, - | ^^^^^^^^^ -... -23 | init_fn: Option i32>, - | ^^^^^^^ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:102:12 - | -102 | if FILEBOX_REGISTRY.is_none() { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - = note: `#[warn(static_mut_refs)]` on by default - -warning: creating a shared reference to mutable static - --> src/bid/plugins/filebox/mod.rs:105:9 - | -105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() - | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static - | - = note: for more information, see - = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives - -warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` - --> src/ast.rs:885:28 - | -885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; - | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `Mutex` - --> src/instance_v2.rs:387:26 - | -387 | use std::sync::{Arc, Mutex}; - | ^^^^^ - -warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` - --> src/mir/loop_builder.rs:9:21 - | -9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, - | ^^^^^^^^^^ ^^^^^^^^^^^ -10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask - | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused import: `BasicBlock` - --> src/mir/verification.rs:311:75 - | -311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^^ - -warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` - --> src/backend/vm.rs:860:22 - | -860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; - | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ - -warning: unused imports: `BidHandle` and `BoxTypeId` - --> src/runtime/tests.rs:10:22 - | -10 | use crate::bid::{BidHandle, BoxTypeId}; - | ^^^^^^^^^ ^^^^^^^^^ - -warning: variable does not need to be mutable - --> src/mir/basic_block.rs:314:13 - | -314 | let mut bb = BasicBlock::new(bb_id); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: unused variable: `child` - --> src/mir/ownership_verifier_simple.rs:313:13 - | -313 | let child = value_gen.next(); - | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` - -warning: variable does not need to be mutable - --> src/bid/plugin_api.rs:167:26 - | -167 | pub fn with_alloc(mut self, f: F) -> Self - | ----^^^^ - | | - | help: remove this `mut` - -warning: unused variable: `config` - --> src/config/nyash_toml_v2.rs:179:13 - | -179 | let config: toml::Value = toml::from_str(toml_str).unwrap(); - | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_config` - -warning: unused variable: `nyash_config` - --> src/config/nyash_toml_v2.rs:180:13 - | -180 | let nyash_config = NyashConfigV2::from_file("test.toml"); - | ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_config` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:11:13 - | -11 | let mut array = ArrayBox::new(); - | ----^^^^^ - | | - | help: remove this `mut` - -warning: variable does not need to be mutable - --> src/tests/box_tests.rs:90:13 - | -90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" - | ----^^^^^^ - | | - | help: remove this `mut` - -warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) -warning: `nyash-rust` (lib test) generated 52 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) -warning: unexpected `cfg` condition value: `mir-v2` - --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 - | -7 | #![cfg(feature = "mir-v2")] - | ^^^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `mir-v2` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - = note: `#[warn(unexpected_cfgs)]` on by default - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:22:7 - | -22 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:503:15 - | -503 | #[cfg(feature = "llvm")] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: unexpected `cfg` condition value: `llvm` - --> src/runner.rs:526:19 - | -526 | #[cfg(not(feature = "llvm"))] - | ^^^^^^^^^^^^^^^^ - | - = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` - = help: consider adding `llvm` as a feature in `Cargo.toml` - = note: see for more information about checking conditional configuration - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` - --> src/bid/plugins/filebox/mod.rs:44:5 - | -44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` - | -note: but type `FileMode` is only usable at visibility `pub(self)` - --> src/bid/plugins/filebox/mod.rs:29:1 - | -29 | enum FileMode { - | ^^^^^^^^^^^^^ - = note: `#[warn(private_interfaces)]` on by default - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:62:9 - | -62 | self.add_predecessor(header_id, preheader_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled - = note: `#[warn(unused_must_use)]` on by default -help: use `let _ = ...` to ignore the resulting value - | -62 | let _ = self.add_predecessor(header_id, preheader_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:66:9 - | -66 | self.mark_block_unsealed(header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -66 | let _ = self.mark_block_unsealed(header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:78:9 - | -78 | self.add_predecessor(body_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -78 | let _ = self.add_predecessor(body_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:79:9 - | -79 | self.add_predecessor(after_loop_id, header_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -79 | let _ = self.add_predecessor(after_loop_id, header_id); - | +++++++ - -warning: unused `std::result::Result` that must be used - --> src/mir/loop_builder.rs:93:9 - | -93 | self.add_predecessor(header_id, latch_id); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this `Result` may be an `Err` variant, which should be handled -help: use `let _ = ...` to ignore the resulting value - | -93 | let _ = self.add_predecessor(header_id, latch_id); - | +++++++ - -warning: unused import: `std::collections::HashMap` - --> tests/integration_tests.rs:9:5 - | -9 | use std::collections::HashMap; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: function `execute_nyash_code` is never used - --> tests/integration_tests.rs:12:4 - | -12 | fn execute_nyash_code(code: &str) -> Result { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: unused import: `BoxCore` - --> src/main.rs:71:32 - | -71 | use box_trait::{StringBox, BoxCore, NyashBox}; - | ^^^^^^^ - -warning: variable does not need to be mutable - --> src/runner.rs:286:17 - | -286 | let mut printer = if self.config.mir_verbose { - | ----^^^^^^^ - | | - | help: remove this `mut` - -warning: unused import: `VMValue` - --> tests/mir_phase6_vm_ref_ops.rs:11:31 - | -11 | use nyash_rust::backend::{VM, VMValue}; - | ^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `NyashBox` - --> tests/mir_phase6_vm_ref_ops.rs:12:41 - | -12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; - | ^^^^^^^^ - -warning: unused variable: `vm` - --> tests/mir_phase6_vm_ref_ops.rs:139:13 - | -139 | let mut vm = VM::new(); - | ^^ help: if this is intentional, prefix it with an underscore: `_vm` - | - = note: `#[warn(unused_variables)]` on by default - -warning: variable does not need to be mutable - --> tests/mir_phase6_vm_ref_ops.rs:139:9 - | -139 | let mut vm = VM::new(); - | ----^^ - | | - | help: remove this `mut` - | - = note: `#[warn(unused_mut)]` on by default - -warning: struct `NyashNotepad` is never constructed - --> examples/simple_notepad_win.rs:58:8 - | -58 | struct NyashNotepad { - | ^^^^^^^^^^^^ - | - = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> examples/simple_notepad_win.rs:64:8 - | -63 | impl NyashNotepad { - | ----------------- associated function in this implementation -64 | fn new() -> Self { - | ^^^ - -warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning -warning: `nyash-rust` (bin "nyash") generated 45 warnings (35 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) -warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) -warning: `nyash-rust` (bin "nyash" test) generated 55 warnings (53 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) -warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) -warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings - Finished `test` profile [unoptimized + debuginfo] target(s) in 2.26s - Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) - -running 156 tests -test box_arithmetic::tests::test_modulo_box ... ok -test bid::types::tests::test_handle_packing ... ok -🚀 Running benchmark: bench_light -test box_arithmetic::tests::test_add_box_integers ... ok -test box_arithmetic::tests::test_compare_box ... ok -test box_arithmetic::tests::test_multiply_box ... ok -test box_arithmetic::tests::test_modulo_chip8_pattern ... ok -test bid::metadata::tests::test_host_vtable ... ok -test bid::types::tests::test_arg_type_mapping ... ok -test bid::tlv::tests::test_encode_decode_primitives ... ok -test box_operators::tests::test_boolean_arithmetic ... ok -test bid::tlv::tests::test_encode_decode_handle ... ok -test bid::metadata::tests::test_plugin_metadata_creation ... ok -test box_arithmetic::tests::test_subtract_box ... ok -test backend::vm::tests::test_basic_vm_execution ... ok -test bid::plugin_api::tests::test_plugin_handle ... ok -test backend::vm::tests::test_binary_operations ... ok -test backend::vm_phi::tests::test_phi_selection ... ok -test ast::tests::test_method_call ... ok -test ast::tests::test_binary_operator ... ok -test ast::tests::test_ast_node_creation ... ok -test box_operators::tests::test_dynamic_addition ... ok -test box_arithmetic::tests::test_add_box_strings ... ok -test bid::types::tests::test_type_tags ... ok -test box_operators::tests::test_integer_addition ... ok -test box_arithmetic::tests::test_divide_box ... ok -test box_factory::tests::test_registry_creation ... ok -test box_operators::tests::test_can_add_with ... ok -test box_operators::tests::test_string_concatenation ... ok -test box_arithmetic::tests::test_modulo_by_zero ... ok -test box_arithmetic::tests::test_divide_by_zero ... ok -test box_operators::tests::test_string_repetition ... ok -test box_trait::tests::test_add_box_integers ... ok -test ast::tests::test_complex_ast ... ok🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: -Program -test box_trait::tests::test_add_box_strings ... ok🔠DEBUG: Executing program with 1 - statements -🔠DEBUG: Executing statement test box_trait::tests::test_bool_box_creation ... 1 of ok1: -BoxDeclaration -Instance: StringBox -🔠execute_statement called with node type: "Instance: MyBox -BoxDeclaration"test ast::tests::test_binary_operation ... ok - -🔠DEBUG: Starting interpreter execution... -test box_trait::tests::test_box_equality ... ok🔠DEBUG: execute_node called with node type: Program - -🔠DEBUG: Executing program with test box_trait::tests::test_box_ids_unique ... ok1 statements - -🔠DEBUG: Executing statement 1test box_trait::tests::test_integer_box_creation ... ok of 1 -: Assignmenttest bid::bridge::tests::test_string_box_bid_conversion ... ok - -🔠execute_statement called with node type: "test bid::bridge::tests::test_integer_box_bid_conversion ... okAssignment" - -test box_trait::tests::test_string_box_creation ... ok🔠About to call execute_assignment... - -thread 'config::nyash_toml_v2::tests::test_parse_v2_config -🔠execute_assignment called, evaluating value expression... -' panicked at src/config/nyash_toml_v2.rstest bid::bridge::tests::test_box_registry ... ok🔠execute_new called for class: IntegerBox:179 -, with 1:60test box_trait::tests::test_void_box ... ok arguments -: -called `Result::unwrap()` on an `Err` value: TomlError { message: "invalid inline table\nexpected `}`", raw: Some("\n[libraries]\n\"libnyash_filebox_plugin.so\" = {\n boxes = [\"FileBox\"],\n path = \"./target/release/libnyash_filebox_plugin.so\"\n}\n\n[libraries.\"libnyash_filebox_plugin.so\".FileBox]\ntype_id = 6\nabi_version = 1\n\n[libraries.\"libnyash_filebox_plugin.so\".FileBox.methods]\nbirth = { method_id = 0 }\nopen = { method_id = 1 }\nclose = { method_id = 4 }\n"), keys: [], span: Some(45..46) } -🔠Trying unified registry for class: IntegerBox -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace -test boxes::null_box::tests::test_get_or_default ... ok - -🔠DEBUG: Starting interpreter execution... -test boxes::null_box::tests::test_null_check ... ok🔠DEBUG: execute_node called with node type: Program - -test boxes::null_box::tests::test_null_creation ... 🔠DEBUG: Executing program with 2ok - statements -test boxes::null_box::tests::test_null_equality ... ok🔠DEBUG: Executing statement 1 - of 2test bid::bridge::tests::test_future_box_bid_conversion ... ok: Assignment - -test cli::tests::test_default_config ... ok🔠execute_statement called with node type: " -Assignment"test cli::tests::test_parse_debug_fuel ... ok - -🔠About to call execute_assignment... -test environment::tests::test_error_handling ... ok🔠execute_assignment called, evaluating value expression... - -🔠execute_new called for class: BoolBoxtest environment::tests::test_global_environment ... ok, with 1 - arguments -test environment::tests::test_nested_scopes ... ok -thread 'mir::effect::tests::test_effect_union' panicked at src/mir/effect.rs:312:9: -assertion failed: !combined.is_parallel_safe() -🔠Trying unified registry for class: BoolBox - -test environment::tests::test_python_compat ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest environment::tests::test_scope_info ... ok -🔠DEBUG: Executing program with -4 statements -test environment::tests::test_variable_setting ... ok🔠DEBUG: Executing statement 1 - of 4test environment::tests::test_variable_shadowing ... ok: BoxDeclaration - -test finalization::tests::test_finalization_tracking ... ok🔠execute_statement called with node type: " -BoxDeclaration"test instance_v2::tests::test_field_operations ... ok - -🌠statics namespace created in GlobalBox successfully -test instance_v2::tests::test_from_any_box_creation ... ok🔥 Static Box 'Main -' definition registered in statics namespace -test instance_v2::tests::test_from_declaration_creation ... ok🔠DEBUG: Starting interpreter execution... - -🔠DEBUG: execute_node called with node type: Programtest bid::plugins::filebox::tests::test_filebox_plugin ... ok - -🔠DEBUG: Executing program with 2test instance_v2::tests::test_unified_approach ... ok statements - -🔠DEBUG: Executing statement 1test mir::basic_block::tests::test_basic_block_creation ... ok of 2 -: Assignmenttest mir::basic_block::tests::test_basic_block_id_generator ... ok - -🔠execute_statement called with node type: "test mir::basic_block::tests::test_branch_successors ... okAssignment" - -test mir::basic_block::tests::test_instruction_addition ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::basic_block::tests::test_phi_instruction_ordering ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::basic_block::tests::test_terminator_addition ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::basic_block::tests::test_value_tracking ... ok - -🔠DEBUG: Statement 1test mir::builder::tests::test_binary_op_building ... ok completed - -🔠DEBUG: Statement 1test mir::builder::tests::test_if_statement_building ... ok completed - -🔠DEBUG: Executing statement 2test mir::builder::tests::test_literal_building ... ok of 4 -: Assignmenttest mir::effect::tests::test_effect_combination ... ok - -🔠execute_statement called with node type: "test mir::effect::tests::test_effect_display ... okAssignment" - -test mir::effect::tests::test_effect_mask_creation ... ok🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test mir::effect::tests::test_effect_names ... ok🔠execute_new called for class: TestBox -, with 0test mir::effect::tests::test_parallel_safety ... ok arguments - -🔠Trying unified registry for class: TestBoxtest mir::function::tests::test_function_creation ... ok - -🭠Unified registry created: IntegerBoxtest mir::function::tests::test_function_stats ... ok -thread 'mir::tests::test_mir_dump' panicked at src/mir/mod.rs:116:9: -MIR dump should contain function information - - -🌠statics namespace already exists - skipping creation -test mir::function::tests::test_module_creation ... ok🔠execute_new called for class: IntegerBox -, with 1test mir::function::tests::test_value_id_generation ... ok arguments - -🔠Trying unified registry for class: IntegerBoxtest mir::instruction::tests::test_barrier_instructions ... ok - -🔥 Static box 'Maintest mir::instruction::tests::test_binop_instruction ... ok' instance registered in statics namespace - -🭠Unified registry created: BoolBoxtest mir::instruction::tests::test_call_instruction ... ok - -🔠execute_statement called with node type: "test mir::instruction::tests::test_const_instruction ... okMethodCall" - -test mir::effect::tests::test_effect_union ... FAILED🔠execute_assignment: value expression evaluated successfully - -🭠Unified registry created: IntegerBoxtest config::nyash_toml_v2::tests::test_parse_v2_config ... FAILED - -🔠DEBUG: resolve_variable: name='statics', local_vars=[]test mir::instruction::tests::test_extern_call_instruction ... ok - -🔠DEBUG: Checking GlobalBox for 'staticstest mir::instruction::tests::test_ref_get_instruction ... ok'... - -🔠DEBUG: Found 'staticstest mir::instruction::tests::test_ref_new_instruction ... ok' in GlobalBox - -🭠Unified registry created: TestBoxtest mir::instruction::tests::test_ref_set_instruction ... ok - -🔠DEBUG: Interpreter execution completed -test mir::instruction::tests::test_weak_load_instruction ... ok🔠execute_assignment: value expression evaluated successfully - -thread 'interpreter::core::tests::test_if_statement' panicked at src/interpreter/core.rs:608:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "x\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'x' to 'init { }' block\n • For local variables: Use 'local x'\n • For field access: Use 'me.x'" } - -✅ FIELD ACCESS: Returning shared reference id=151test mir::instruction::tests::test_weak_new_instruction ... ok - -🔠execute_assignment: value expression evaluated successfully -test mir::instruction_v2::tests::test_effect_categories ... ok🭠Unified registry created: IntegerBox - -test mir::instruction_v2::tests::test_instruction_count ... ok🔠try_add_operation: left=IntegerBox -, right=IntegerBoxtest mir::instruction_v2::tests::test_ownership_operations ... ok - -🔠After unwrap: left=IntegerBoxtest mir::ownership_verifier_simple::tests::test_basic_ref_set ... ok, right=IntegerBox - -test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... ok🔠Checking StringBox downcast... - -🔠StringBox downcast FAILED! -test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok🔠execute_statement called with node type: " -Local"test mir::printer::tests::test_empty_module_printing ... ok - -🔠DEBUG: Interpreter execution completed -test mir::printer::tests::test_function_printing ... ok🔠DEBUG: Interpreter execution completed - -thread 'interpreter::core::tests::test_box_instance_creation' panicked at src/interpreter/core.rs:637:34: -called `Result::unwrap()` on an `Err` value: UndefinedVariable { name: "obj\n💡 Suggestion: Declare the variable first:\n • For fields: Add 'obj' to 'init { }' block\n • For local variables: Use 'local obj'\n • For field access: Use 'me.obj'" } - -🔠DEBUG: Interpreter execution completed - -thread 'interpreter::core::tests::test_simple_execution' panicked at src/interpreter/core.rs:577:9: -assertion failed: result.is_ok() -test mir::printer::tests::test_verbose_printing ... ok🔠execute_statement called with node type: " -thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:588:34: -called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } - -Assignment"test mir::tests::test_basic_mir_compilation ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::tests::test_loop_compilation ... okIntegerBox -, with 1test mir::tests::test_mir_dump ... FAILED arguments -🔠Trying unified registry for class: -IntegerBox -test mir::tests::test_throw_compilation ... ok -thread 'tokenizer::tests::test_comments' panicked at src/tokenizer.rs:616:9: -assertion `left == right` failed - left: 6 - right: 4 -🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test mir::tests::test_try_catch_compilation ... ok🔠execute_statement called with node type: " -Assignment"test mir::value_id::tests::test_local_id_creation ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::value_id::tests::test_local_id_generator ... okIntegerBox, with -1 arguments -test mir::value_id::tests::test_value_id_creation ... ok -thread 'tokenizer::tests::test_line_numbers' panicked at src/tokenizer.rs:601:9: -assertion `left == right` failed - left: 1 - right: 2 -🔠Trying unified registry for class: IntegerBox - -test mir::value_id::tests::test_value_id_generator ... ok🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test mir::value_id::tests::test_value_id_ordering ... ok🔠execute_statement called with node type: " -Assignment"test mir::verification::tests::test_undefined_value_detection ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: test mir::verification::tests::test_valid_function_verification ... okIntegerBox, with -1 arguments -test runtime::box_registry::tests::test_builtin_registration ... ok🔠Trying unified registry for class: IntegerBox - -test runtime::box_registry::tests::test_plugin_override ... ok🭠Unified registry created: IntegerBox - -🔠execute_assignment: value expression evaluated successfully -test runtime::plugin_config::tests::test_parse_empty_config ... ok🔠execute_statement called with node type: " -Assignment"test runtime::plugin_config::tests::test_parse_simple_config ... ok -🔠About to call execute_assignment... - -🔠execute_assignment called, evaluating value expression... -test interpreter::core::tests::test_if_statement ... FAILED -🔠DEBUG: resolve_variable: name='a', local_vars=["a", "b", "me", "c", "result"]test runtime::plugin_config::tests::test_parse_with_comments ... ok -🔠DEBUG: Found ' -a' in local_vars -test runtime::tests::tests::test_box_registry_builtin ... ok✅ RESOLVE_VARIABLE shared reference: a - id=202test runtime::tests::tests::test_box_registry_plugin_override ... ok - -🔠DEBUG: resolve_variable: name='b', local_vars=["a", "b", "me", "c", "result"]test runtime::tests::tests::test_multiple_plugin_types ... ok -🔠DEBUG: Found ' -b' in local_vars -test runtime::tests::tests::test_plugin_config_parsing ... ok✅ RESOLVE_VARIABLE shared reference: b -test runtime::tests::tests::test_transparent_box_switching ... id=206ok - -🔠try_add_operation: left=test tests::box_tests::tests::test_array_box_nyash_trait ... okIntegerBox, right= -test tests::box_tests::tests::test_box_id_uniqueness ... IntegerBox -ok -🔠After unwrap: left=IntegerBoxtest tests::box_tests::tests::test_buffer_box_nyash_trait ... ok, right=IntegerBox -test interpreter::core::tests::test_box_instance_creation ... -🔠Checking StringBox downcast... -FAILED -🔠StringBox downcast FAILED! -test tests::box_tests::tests::test_future_box_nyash_trait ... ok -🔠DEBUG: Interpreter execution completed -test interpreter::core::tests::test_simple_execution ... FAILED -test interpreter::core::tests::test_arithmetic ... FAILED -test tests::box_tests::tests::test_result_box_nyash_trait ... ok -test tests::box_tests::tests::test_json_box_nyash_trait ... ok -test tokenizer::tests::test_comments ... FAILED -test tokenizer::tests::test_complex_code ... ok -test tokenizer::tests::test_error_handling ... ok -test tests::box_tests::tests::test_stream_box_nyash_trait ... ok -test tokenizer::tests::test_identifier ... ok -test tokenizer::tests::test_line_numbers ... FAILED -test tokenizer::tests::test_number_literal ... ok -88 - ðŸŽï¸ VM: First run completed -test tokenizer::tests::test_operators ... ok -88 -test tokenizer::tests::test_simple_tokens ... ok -88 -🚀 Running benchmark: bench_medium -test tokenizer::tests::test_string_literal ... ok -test value::tests::test_basic_creation ... ok -test value::tests::test_cross_type_equality ... ok -test value::tests::test_object_creation ... ok -test value::tests::test_type_conversion ... ok -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: test value::tests::test_type_names ... okProgram - -🔠DEBUG: Executing program with 1test value::tests::test_weak_reference_basic ... ok statements -🔠DEBUG: Executing statement -1 of test value::tests::test_weak_reference_drop ... ok1: -BoxDeclaration -test value::tests::test_weak_reference_equality ... ok🔠execute_statement called with node type: " -BoxDeclaration"test value::tests::test_weak_reference_string_representation ... ok - -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=223 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔗 DEBUG: Variable 'sum' set to 0 - simulating object drop -🔠DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'sum' in local_vars -✅ RESOLVE_VARIABLE shared reference: sum id=225 -🔗 DEBUG: Old value being dropped: void -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "me", "temp"] -🔠DEBUG: Found 'i' in local_vars -✅ RESOLVE_VARIABLE shared reference: i id=236 -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠DEBUG: Interpreter execution completed -140 - ðŸŽï¸ VM: First run completed -140 -140 -🚀 Running benchmark: bench_heavy -🔠DEBUG: Starting interpreter execution... -🔠DEBUG: execute_node called with node type: Program -🔠DEBUG: Executing program with 1 statements -🔠DEBUG: Executing statement 1 of 1: BoxDeclaration -🔠execute_statement called with node type: "BoxDeclaration" -🌠statics namespace created in GlobalBox successfully -🔥 Static Box 'Main' definition registered in statics namespace -🔠DEBUG: Statement 1 completed -🌠statics namespace already exists - skipping creation -🔥 Static box 'Main' instance registered in statics namespace -🔠execute_statement called with node type: "MethodCall" -🔠DEBUG: resolve_variable: name='statics', local_vars=[] -🔠DEBUG: Checking GlobalBox for 'statics'... -🔠DEBUG: Found 'statics' in GlobalBox -✅ FIELD ACCESS: Returning shared reference id=248 -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Local" -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠execute_new called for class: IntegerBox, with 1 arguments -🔠Trying unified registry for class: IntegerBox -🭠Unified registry created: IntegerBox -🔠execute_assignment: value expression evaluated successfully -🔠execute_statement called with node type: "Assignment" -🔠About to call execute_assignment... -🔠execute_assignment called, evaluating value expression... -🔠DEBUG: resolve_variable: name='a', local_vars=["me", "result1", "f", "result2", "i", "result4", "b", "e", "g", "a", "h", "d", "result5", "result3", "c", "j"] -🔠DEBUG: Found 'a' in local_vars -✅ RESOLVE_VARIABLE shared reference: a id=269 -🔠DEBUG: resolve_variable: name='b', local_vars=["me", "result1", "f", "result2", "i", "result4", "b", "e", "g", "a", "h", "d", "result5", "result3", "c", "j"] -🔠DEBUG: Found 'b' in local_vars -✅ RESOLVE_VARIABLE shared reference: b id=273 -🔠DEBUG: Interpreter execution completed -6301391 - ðŸŽï¸ VM: First run completed -6301391 -6301391 - -📊 Nyash Performance Benchmark Results -===================================== -Iterations per test: 3 - -🎯 bench_light - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 2.171 | 6.5 | 1.00x - -🎯 bench_medium - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.561 | 1.7 | 1.00x - -🎯 bench_heavy - Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio - --------------|---------------|-----------------|------------ - VM | 0.601 | 1.8 | 1.00x - -💡 Performance Summary: - 📈 Average across all benchmarks: - Interpreter: NaN ms - VM: 1.11 ms (NaNx faster than interpreter) - WASM: NaN ms (NaNx faster than interpreter) -test benchmarks::tests::test_benchmark_light ... ok - -failures: - -failures: - config::nyash_toml_v2::tests::test_parse_v2_config - interpreter::core::tests::test_arithmetic - interpreter::core::tests::test_box_instance_creation - interpreter::core::tests::test_if_statement - interpreter::core::tests::test_simple_execution - mir::effect::tests::test_effect_union - mir::tests::test_mir_dump - tokenizer::tests::test_comments - tokenizer::tests::test_line_numbers - -test result: FAILED. 147 passed; 9 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.23s - -error: test failed, to rerun pass `--lib` diff --git a/test_simple.nyash b/test_simple.nyash deleted file mode 100644 index aecb68a8..00000000 --- a/test_simple.nyash +++ /dev/null @@ -1,19 +0,0 @@ -// ç°¡å˜ãªNyashテストプログラム -print("🎉 Nyash is working!") -print("Everything is Box!") - -// åŸºæœ¬çš„ãªæ¼”ç®— -local a = 10 -local b = 20 -local result = a + b -print("10 + 20 = " + result.toString()) - -// StringBox -local greeting = "Hello, Nyash!" -print(greeting) - -// ArrayBox -local arr = new ArrayBox() -arr.push("First") -arr.push("Second") -print("Array length: " + arr.length().toString()) \ No newline at end of file diff --git a/vm_stats_404.json b/vm_stats_404.json deleted file mode 100644 index d416c1f7..00000000 --- a/vm_stats_404.json +++ /dev/null @@ -1,86 +0,0 @@ -🔠DEBUG: Initializing v2 plugin system -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_counter_plugin.so -[FileBox] Plugin initialized -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_filebox_plugin.so -Net plugin: LOG_ON=false, LOG_PATH=net_plugin.log -[PluginLoaderV2] nyash_plugin_init rc=0 for libnyash_net_plugin.so -🔌 v2 plugin system initialized from nyash.toml - 📦 Registering plugin provider for CounterBox - 📦 Registering plugin provider for FileBox - 📦 Registering plugin provider for HttpServerBox - 📦 Registering plugin provider for HttpClientBox - 📦 Registering plugin provider for HttpResponseBox - 📦 Registering plugin provider for HttpRequestBox - 📦 Registering plugin provider for SocketServerBox - 📦 Registering plugin provider for SocketClientBox - 📦 Registering plugin provider for SocketConnBox -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/vm_stats_http_404.nyash 🚀 -🔠create_box called for: HttpServerBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpServerBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpServerBox with type_id: 20 -🔠Preparing to call birth() with type_id: 20 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=20, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpServerBox instance_id=1 -[PluginLoaderV2] Invoke HttpServerBox.birth: resolving and encoding args (argc=0) -[VM→Plugin] call HttpServerBox.birth recv_id=1 returns_result=false -[PluginLoaderV2] Invoke HttpServerBox.start: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: Integer(8404) -> I32(tag=2) -[VM→Plugin] call HttpServerBox.start recv_id=1 returns_result=true -🔠create_box called for: HttpClientBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpClientBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpClientBox with type_id: 23 -🔠Preparing to call birth() with type_id: 23 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=23, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpClientBox instance_id=1 -[PluginLoaderV2] Invoke HttpClientBox.birth: resolving and encoding args (argc=0) -[VM→Plugin] call HttpClientBox.birth recv_id=1 returns_result=false -[PluginLoaderV2] Invoke HttpClientBox.get: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: String(len=31) -> String(tag=6) -[VM→Plugin] call HttpClientBox.get recv_id=1 returns_result=true -[PluginLoaderV2] Invoke HttpServerBox.accept: resolving and encoding args (argc=0) -[VM→Plugin] call HttpServerBox.accept recv_id=1 returns_result=true -🔠create_box called for: HttpResponseBox -🔠Config loaded successfully -🔠Found library: libnyash_net_plugin.so for box type: HttpResponseBox -🔠Plugin loaded successfully -🔠Reading nyash.toml for type configuration... -🔠nyash.toml read successfully -🔠nyash.toml parsed successfully -🔠Found box config for HttpResponseBox with type_id: 22 -🔠Preparing to call birth() with type_id: 22 -🔠Output buffer allocated, about to call plugin invoke_fn... -🔠Calling invoke_fn(type_id=22, method_id=0, instance_id=0, tlv_args=[1, 0, 0, 0], output_buf, output_size=1024) -🔠invoke_fn returned with result: 0 -🎉 birth() success: HttpResponseBox instance_id=2 -[PluginLoaderV2] Invoke HttpResponseBox.birth: resolving and encoding args (argc=0) -[VM→Plugin] call HttpResponseBox.birth recv_id=2 returns_result=false -[PluginLoaderV2] Invoke HttpResponseBox.setStatus: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: Integer(404) -> I32(tag=2) -[VM→Plugin] call HttpResponseBox.setStatus recv_id=2 returns_result=false -[PluginLoaderV2] Invoke HttpResponseBox.write: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: String(len=9) -> String(tag=6) -[VM→Plugin] call HttpResponseBox.write recv_id=2 returns_result=false -[PluginLoaderV2] Invoke HttpRequestBox.respond: resolving and encoding args (argc=1) -[PluginLoaderV2] arg[0]: PluginBoxV2(HttpResponseBox, id=2) -> Handle(tag=8) -[VM→Plugin] call HttpRequestBox.respond recv_id=1 returns_result=false -[PluginLoaderV2] Invoke HttpResponseBox.getStatus: resolving and encoding args (argc=0) -[VM→Plugin] call HttpResponseBox.getStatus recv_id=1 returns_result=false -[PluginLoaderV2] Invoke HttpResponseBox.readBody: resolving and encoding args (argc=0) -[VM→Plugin] call HttpResponseBox.readBody recv_id=1 returns_result=false -✅ VM execution completed successfully! -Result: StringBox { value: "404:Not Found", base: BoxBase { id: 57, parent_type_id: None } } diff --git a/vm_stats_err.json b/vm_stats_err.json deleted file mode 100644 index 51b22414..00000000 --- a/vm_stats_err.json +++ /dev/null @@ -1,3 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/vm_stats_http_err.nyash 🚀 diff --git a/vm_stats_filebox.json b/vm_stats_filebox.json deleted file mode 100644 index f4f3b484..00000000 --- a/vm_stats_filebox.json +++ /dev/null @@ -1,39 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/vm_stats_filebox.nyash 🚀 -{ - "counts": { - "BoxCall": 17, - "Const": 13, - "NewBox": 12, - "Return": 1, - "Safepoint": 1 - }, - "elapsed_ms": 26.658774, - "timestamp_ms": 1755900319445, - "top20": [ - { - "count": 17, - "op": "BoxCall" - }, - { - "count": 13, - "op": "Const" - }, - { - "count": 12, - "op": "NewBox" - }, - { - "count": 1, - "op": "Return" - }, - { - "count": 1, - "op": "Safepoint" - } - ], - "total": 44 -} -✅ VM execution completed successfully! -Result: StringBox { value: "HELLO", base: BoxBase { id: 59, parent_type_id: None } } diff --git a/vm_stats_ok.json b/vm_stats_ok.json deleted file mode 100644 index e5143e37..00000000 --- a/vm_stats_ok.json +++ /dev/null @@ -1,3 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/vm_stats_http_ok.nyash 🚀 diff --git a/vm_stats_simple.json b/vm_stats_simple.json deleted file mode 100644 index 15f41786..00000000 --- a/vm_stats_simple.json +++ /dev/null @@ -1,50 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/test_vm_simple.nyash 🚀 -15 -{ - "counts": { - "BinOp": 1, - "BoxCall": 2, - "Const": 5, - "NewBox": 2, - "Print": 1, - "Return": 1, - "Safepoint": 1 - }, - "elapsed_ms": 0.154706, - "timestamp_ms": 1755939354732, - "top20": [ - { - "count": 5, - "op": "Const" - }, - { - "count": 2, - "op": "BoxCall" - }, - { - "count": 2, - "op": "NewBox" - }, - { - "count": 1, - "op": "BinOp" - }, - { - "count": 1, - "op": "Print" - }, - { - "count": 1, - "op": "Return" - }, - { - "count": 1, - "op": "Safepoint" - } - ], - "total": 13 -} -✅ VM execution completed successfully! -Result: IntegerBox { value: 15, base: BoxBase { id: 12, parent_type_id: None } } diff --git a/vm_stats_weak_default.json b/vm_stats_weak_default.json deleted file mode 100644 index 0c651eae..00000000 --- a/vm_stats_weak_default.json +++ /dev/null @@ -1,75 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/weak_field_poc.nyash 🚀 -0 -{ - "counts": { - "BarrierRead": 1, - "BarrierWrite": 1, - "BoxCall": 2, - "Const": 9, - "NewBox": 2, - "Print": 1, - "RefGet": 4, - "RefSet": 3, - "Return": 3, - "Safepoint": 1, - "WeakLoad": 1, - "WeakNew": 1 - }, - "elapsed_ms": 0.194731, - "timestamp_ms": 1755956955634, - "top20": [ - { - "count": 9, - "op": "Const" - }, - { - "count": 4, - "op": "RefGet" - }, - { - "count": 3, - "op": "RefSet" - }, - { - "count": 3, - "op": "Return" - }, - { - "count": 2, - "op": "BoxCall" - }, - { - "count": 2, - "op": "NewBox" - }, - { - "count": 1, - "op": "BarrierRead" - }, - { - "count": 1, - "op": "BarrierWrite" - }, - { - "count": 1, - "op": "Print" - }, - { - "count": 1, - "op": "Safepoint" - }, - { - "count": 1, - "op": "WeakLoad" - }, - { - "count": 1, - "op": "WeakNew" - } - ], - "total": 29 -} -✅ VM execution completed successfully! -Result: IntegerBox { value: 0, base: BoxBase { id: 4, parent_type_id: None } } diff --git a/vm_stats_weak_unified.json b/vm_stats_weak_unified.json deleted file mode 100644 index c768b641..00000000 --- a/vm_stats_weak_unified.json +++ /dev/null @@ -1,65 +0,0 @@ -🔌 v2 plugin system initialized from nyash.toml -✅ v2 plugin system fully configured -🚀 Nyash VM Backend - Executing file: local_tests/weak_field_poc.nyash 🚀 -0 -{ - "counts": { - "Barrier": 2, - "BoxCall": 2, - "Const": 9, - "NewBox": 2, - "Print": 1, - "RefGet": 4, - "RefSet": 3, - "Return": 3, - "Safepoint": 1, - "WeakRef": 2 - }, - "elapsed_ms": 0.16804799999999998, - "timestamp_ms": 1755957108401, - "top20": [ - { - "count": 9, - "op": "Const" - }, - { - "count": 4, - "op": "RefGet" - }, - { - "count": 3, - "op": "RefSet" - }, - { - "count": 3, - "op": "Return" - }, - { - "count": 2, - "op": "Barrier" - }, - { - "count": 2, - "op": "BoxCall" - }, - { - "count": 2, - "op": "NewBox" - }, - { - "count": 2, - "op": "WeakRef" - }, - { - "count": 1, - "op": "Print" - }, - { - "count": 1, - "op": "Safepoint" - } - ], - "total": 29 -} -✅ VM execution completed successfully! -Result: IntegerBox { value: 0, base: BoxBase { id: 4, parent_type_id: None } }